DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_DATAPLANE_VARCHAR2_TBL Type 🔗
Nested table type of varchar2(32767).
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_dataplane_varchar2_tbl FORCE IS TABLE OF (varchar2(32767)) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_DATAPLANE_ENTITY_T Type 🔗
An entity allows the labeler to identify an object in the record to label. This can be, for example, a snippet of text, an entire image, or a bounding box within an image. All entity types have an array of labels that are indexed. If more than one label is provided, but the annotationType on the corresponding dataset is for a single class, the API rejects the create annotation request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_dataplane_entity_t FORCE AUTHID CURRENT_USER IS OBJECT (
entity_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_entity_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_entity_t (
entity_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
entity_type
(required) The entity type described in the annotation. GENERIC - An extensible entity type that is the base entity type for some annotation formats. IMAGEOBJECTSELECTION- - This allows the labeler to use specify a bounding polygon on the image to represent an object and apply labels to it. TEXTSELECTION - This allows the labeler to highlight text, by specifying an offset and a length, and apply labels to it. KEYVALUESELECTION - This allows the labeler to apply label the highlighted text from OCR.
DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_DATAPLANE_ENTITY_TBL Type 🔗
Nested table type of dbms_cloud_oci_data_labeling_service_dataplane_entity_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_dataplane_entity_tbl FORCE IS TABLE OF (dbms_cloud_oci_data_labeling_service_dataplane_entity_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_DATAPLANE_ANNOTATION_T Type 🔗
An annotation represents a user- or machine-generated annotation for a given record. The details of the annotation are captured in the RecordAnnotationDetails.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_dataplane_annotation_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
created_by varchar2(32767),
updated_by varchar2(32767),
record_id varchar2(32767),
entities dbms_cloud_oci_data_labeling_service_dataplane_entity_tbl,
compartment_id varchar2(32767),
lifecycle_state varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_annotation_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_annotation_t (
id varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
created_by varchar2,
updated_by varchar2,
record_id varchar2,
entities dbms_cloud_oci_data_labeling_service_dataplane_entity_tbl,
compartment_id varchar2,
lifecycle_state varchar2,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
id
(required) The OCID of the annotation.
time_created
(required) The date and time the annotation was created, in the timestamp format defined by RFC3339.
time_updated
(required) The date and time the resource was updated, in the timestamp format defined by RFC3339.
created_by
(required) The OCID of the principal which created the annotation.
updated_by
(required) The OCID of the principal which updated the annotation.
record_id
(required) The OCID of the record annotated.
entities
(required) The entity types are validated against the dataset to ensure consistency.
compartment_id
(required) The OCID of the compartment for the annotation. This is tied to the dataset. It is not changeable on the record itself.
lifecycle_state
(required) The lifecycle state of an annotation. ACTIVE - The annotation is active to be used for labeling. INACTIVE - The annotation has been marked as inactive and should not be used for labeling. DELETED - Tha annotation been deleted and no longer available for labeling.
(optional) A simple key-value pair that is applied without any predefined name, type, or scope. It exists for cross-compatibility only. For example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) The defined tags for this resource. Each key is predefined and scoped to a namespace. For example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_DATAPLANE_LABEL_T Type 🔗
A label is a string value. The API validates that it's one of the dataset's pre-defined labels.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_dataplane_label_t FORCE AUTHID CURRENT_USER IS OBJECT (
label varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_label_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_label_t (
label varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
label
(required) The label provided by the annotator.
DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_DATAPLANE_ANNOTATION_AGGREGATION_DIMENSIONS_T Type 🔗
The dimensions to summarize annotations for a given dataset.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_dataplane_annotation_aggregation_dimensions_t FORCE AUTHID CURRENT_USER IS OBJECT (
label dbms_cloud_oci_data_labeling_service_dataplane_label_t,
updated_by varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_annotation_aggregation_dimensions_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_annotation_aggregation_dimensions_t (
label dbms_cloud_oci_data_labeling_service_dataplane_label_t,
updated_by varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
label
(optional)
updated_by
(optional) The OCID of the principal which updated the resource.
DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_DATAPLANE_ANNOTATION_ANALYTICS_AGGREGATION_T Type 🔗
Aggregation entities are required by the API consistency guidelines for API Consistency Guidelines#AnalyticsAPIs. These are used to summarize annotations for a given dataset and will be used to populate UI elements. Aggregations need to have the fields that identify the exact scope that they're summarizing. Any filters applied to the list API, have to show up in the aggregation.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_dataplane_annotation_analytics_aggregation_t FORCE AUTHID CURRENT_USER IS OBJECT (
l_count number,
dataset_id varchar2(32767),
dimensions dbms_cloud_oci_data_labeling_service_dataplane_annotation_aggregation_dimensions_t,
updated_by varchar2(32767),
compartment_id varchar2(32767),
lifecycle_state varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_annotation_analytics_aggregation_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_annotation_analytics_aggregation_t (
l_count number,
dataset_id varchar2,
dimensions dbms_cloud_oci_data_labeling_service_dataplane_annotation_aggregation_dimensions_t,
updated_by varchar2,
compartment_id varchar2,
lifecycle_state varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
l_count
(required) The count of the matching results.
dataset_id
(required) The OCID of the dataset the annotations belong to.
dimensions
(optional)
updated_by
(optional) The OCID of the principal which updated the annotation.
compartment_id
(required) The OCID of the compartment containing the annotations.
lifecycle_state
(optional) Describes the lifecycle state.
DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_DATAPLANE_ANNOTATION_ANALYTICS_AGGREGATION_TBL Type 🔗
Nested table type of dbms_cloud_oci_data_labeling_service_dataplane_annotation_analytics_aggregation_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_dataplane_annotation_analytics_aggregation_tbl FORCE IS TABLE OF (dbms_cloud_oci_data_labeling_service_dataplane_annotation_analytics_aggregation_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_DATAPLANE_ANNOTATION_ANALYTICS_AGGREGATION_COLLECTION_T Type 🔗
Aggregation entities are required by the API consistency guidelines for API Consistency Guidelines#AnalyticsAPIs. These are used to summarize annotations for a given dataset and will be used to populate UI elements. Aggregations need to have the fields that identify the exact scope that they're summarizing. Any filters applied to the list API, have to show up in the aggregation.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_dataplane_annotation_analytics_aggregation_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_data_labeling_service_dataplane_annotation_analytics_aggregation_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_annotation_analytics_aggregation_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_annotation_analytics_aggregation_collection_t (
items dbms_cloud_oci_data_labeling_service_dataplane_annotation_analytics_aggregation_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) The list of annotation entities.
DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_DATAPLANE_ANNOTATION_SUMMARY_T Type 🔗
An annotation summary is the representation returned in list views. It is usually a subset of the full annotation entity and should not contain any potentially sensitive information.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_dataplane_annotation_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
record_id varchar2(32767),
compartment_id varchar2(32767),
lifecycle_state varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_annotation_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_annotation_summary_t (
id varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
record_id varchar2,
compartment_id varchar2,
lifecycle_state varchar2,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
id
(required) The OCID of the annotation.
time_created
(required) The date and time the annotation was created, in the timestamp format defined by RFC3339.
time_updated
(required) The date and time the resource was updated, in the timestamp format defined by RFC3339.
record_id
(required) The OCID of the record annotated.
compartment_id
(required) The OCID of the compartment for the annotation.
lifecycle_state
(required) Describes the lifecycle state.
freeform_tags
(optional) A simple key-value pair that is applied without any predefined name, type, or scope. It exists for cross-compatibility only. For example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) The defined tags for this resource. Each key is predefined and scoped to a namespace. For example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_DATAPLANE_ANNOTATION_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_data_labeling_service_dataplane_annotation_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_dataplane_annotation_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_data_labeling_service_dataplane_annotation_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_DATAPLANE_ANNOTATION_COLLECTION_T Type 🔗
The results of an annotations search. It contains AnnotationSummary items and other information, such as metadata.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_dataplane_annotation_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_data_labeling_service_dataplane_annotation_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_annotation_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_annotation_collection_t (
items dbms_cloud_oci_data_labeling_service_dataplane_annotation_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) The list of annotations.
DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_DATAPLANE_NORMALIZED_VERTEX_T Type 🔗
A NormalizedVertex is a cartesian coordinate that represents a corner between two segments of a polygon.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_dataplane_normalized_vertex_t FORCE AUTHID CURRENT_USER IS OBJECT (
x number,
y number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_normalized_vertex_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_normalized_vertex_t (
x number,
y number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
x
(required) The X axis coordinate.
y
(required) The Y axis coordinate.
DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_DATAPLANE_NORMALIZED_VERTEX_TBL Type 🔗
Nested table type of dbms_cloud_oci_data_labeling_service_dataplane_normalized_vertex_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_dataplane_normalized_vertex_tbl FORCE IS TABLE OF (dbms_cloud_oci_data_labeling_service_dataplane_normalized_vertex_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_DATAPLANE_BOUNDING_POLYGON_T Type 🔗
A polygon used to describe the location of an object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_dataplane_bounding_polygon_t FORCE AUTHID CURRENT_USER IS OBJECT (
normalized_vertices dbms_cloud_oci_data_labeling_service_dataplane_normalized_vertex_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_bounding_polygon_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_bounding_polygon_t (
normalized_vertices dbms_cloud_oci_data_labeling_service_dataplane_normalized_vertex_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
normalized_vertices
(required) The normalized vertices that make up the polygon. They are in the order of the segments they connect.
DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_DATAPLANE_CREATE_ANNOTATION_DETAILS_T Type 🔗
This is the payload sent in the CreateAnnotation operation. It contains all the information required for a user to create an annotation for a record.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_dataplane_create_annotation_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
record_id varchar2(32767),
compartment_id varchar2(32767),
entities dbms_cloud_oci_data_labeling_service_dataplane_entity_tbl,
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_create_annotation_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_create_annotation_details_t (
record_id varchar2,
compartment_id varchar2,
entities dbms_cloud_oci_data_labeling_service_dataplane_entity_tbl,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
record_id
(required) The OCID of the record annotated.
compartment_id
(required) The OCID of the compartment for the annotation.
entities
(required) The entity types are validated against the dataset to ensure consistency.
freeform_tags
(optional) A simple key-value pair that is applied without any predefined name, type, or scope. It exists for cross-compatibility only. For example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) The defined tags for this resource. Each key is predefined and scoped to a namespace. For example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_DATAPLANE_CREATE_SOURCE_DETAILS_T Type 🔗
The source information is a polymorphic entity. It captures the details of how to access the data for record creation. The discriminator type must match the dataset's source type. The convention will be enforced by the API. It should only provide the difference in data necessary to access the content, i.e. the object storage path, or the database record id.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_dataplane_create_source_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
source_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_create_source_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_create_source_details_t (
source_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
source_type
(required) The type of data source. OBJECT_STORAGE - The source details for an object storage bucket.
Allowed values are: 'OBJECT_STORAGE'
DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_DATAPLANE_CREATE_OBJECT_STORAGE_SOURCE_DETAILS_T Type 🔗
Object Storage Source Details.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_dataplane_create_object_storage_source_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_data_labeling_service_dataplane_create_source_details_t (
relative_path varchar2(32767),
offset number,
length number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_create_object_storage_source_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_create_object_storage_source_details_t (
source_type varchar2,
relative_path varchar2,
offset number,
length number
) RETURN SELF AS RESULT
);
dbms_cloud_oci_data_labeling_service_dataplane_create_object_storage_source_details_t is a subtype of the dbms_cloud_oci_data_labeling_service_dataplane_create_source_details_t type.
Fields
Field
Description
relative_path
(required) The path relative to the prefix specified in the dataset source details (file name).
offset
(optional) The offset into the file containing the content.
length
(optional) The length from offset into the file containing the content.
DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_DATAPLANE_RECORD_METADATA_T Type 🔗
Collection of record's metadata. This can be, for example, the height, width or depth of image for an image record.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_dataplane_record_metadata_t FORCE AUTHID CURRENT_USER IS OBJECT (
record_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_record_metadata_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_record_metadata_t (
record_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
record_type
(optional) The record type based on dataset format details. IMAGE_METADATA - Collection of metadata related to image record. TEXT_METADATA - Collection of metadata related to text record. DOCUMENT_METADATA - Collection of metadata related to document record.
DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_DATAPLANE_CREATE_RECORD_DETAILS_T Type 🔗
A record represents an entry in a dataset that needs labeling.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_dataplane_create_record_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
name varchar2(32767),
dataset_id varchar2(32767),
compartment_id varchar2(32767),
source_details dbms_cloud_oci_data_labeling_service_dataplane_create_source_details_t,
record_metadata dbms_cloud_oci_data_labeling_service_dataplane_record_metadata_t,
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_create_record_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_create_record_details_t (
name varchar2,
dataset_id varchar2,
compartment_id varchar2,
source_details dbms_cloud_oci_data_labeling_service_dataplane_create_source_details_t,
record_metadata dbms_cloud_oci_data_labeling_service_dataplane_record_metadata_t,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
name
(required) The name is automatically assigned by the service. It is unique and immutable.
dataset_id
(required) The OCID of the dataset to associate the record with.
compartment_id
(required) The OCID of the compartment for the record. This is tied to the dataset. It is not changeable on the record itself.
source_details
(required)
record_metadata
(optional)
freeform_tags
(optional) A simple key-value pair that is applied without any predefined name, type, or scope. It exists for cross-compatibility only. For example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) The defined tags for this resource. Each key is predefined and scoped to a namespace. For example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_DATAPLANE_DATASET_SOURCE_DETAILS_T Type 🔗
This allows the customer to specify the source of the dataset.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_dataplane_dataset_source_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
source_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_dataset_source_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_dataset_source_details_t (
source_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
source_type
(required) The source type. OBJECT_STORAGE allows the user to describe where in object storage the dataset is.
Allowed values are: 'OBJECT_STORAGE'
DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_DATAPLANE_DATASET_FORMAT_DETAILS_T Type 🔗
It specifies how to process the data. Supported formats include DOCUMENT, IMAGE, and TEXT.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_dataplane_dataset_format_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
format_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_dataset_format_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_dataset_format_details_t (
format_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
format_type
(required) The format type. DOCUMENT format is for record contents that are PDFs or TIFFs. IMAGE format is for record contents that are JPEGs or PNGs. TEXT format is for record contents that are TXT files.
Allowed values are: 'DOCUMENT', 'IMAGE', 'TEXT'
DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_DATAPLANE_LABEL_NAME_T Type 🔗
It represents a label.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_dataplane_label_name_t FORCE AUTHID CURRENT_USER IS OBJECT (
name varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_label_name_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_label_name_t (
name varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
name
(optional) An unique name for a label within its dataset.
DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_DATAPLANE_LABEL_NAME_TBL Type 🔗
Nested table type of dbms_cloud_oci_data_labeling_service_dataplane_label_name_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_dataplane_label_name_tbl FORCE IS TABLE OF (dbms_cloud_oci_data_labeling_service_dataplane_label_name_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_DATAPLANE_LABEL_SET_T Type 🔗
An ordered collection of labels that are unique by name.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_dataplane_label_set_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_data_labeling_service_dataplane_label_name_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_label_set_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_label_set_t (
items dbms_cloud_oci_data_labeling_service_dataplane_label_name_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(optional) An ordered collection of labels that are unique by name.
DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_DATAPLANE_INITIAL_RECORD_GENERATION_CONFIGURATION_T Type 🔗
The initial generate records configuration. It generates records from the dataset's source.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_dataplane_initial_record_generation_configuration_t FORCE AUTHID CURRENT_USER IS OBJECT (
limit number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_initial_record_generation_configuration_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_initial_record_generation_configuration_t (
limit number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
limit
(optional) The maximum number of records to generate.
DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_DATAPLANE_IMPORT_FORMAT_T Type 🔗
File format details used for importing dataset
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_dataplane_import_format_t FORCE AUTHID CURRENT_USER IS OBJECT (
name varchar2(32767),
version varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_import_format_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_import_format_t (
name varchar2,
version varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_DATAPLANE_IMPORT_METADATA_PATH_T Type 🔗
Object storage path for the metadata file
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_dataplane_import_metadata_path_t FORCE AUTHID CURRENT_USER IS OBJECT (
source_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_import_metadata_path_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_import_metadata_path_t (
source_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
source_type
(required) The type of data source. OBJECT_STORAGE - The source details for an object storage bucket.
Allowed values are: 'OBJECT_STORAGE'
DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_DATAPLANE_INITIAL_IMPORT_DATASET_CONFIGURATION_T Type 🔗
Initial import dataset configuration. Allows user to create dataset from existing dataset files.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_dataplane_initial_import_dataset_configuration_t FORCE AUTHID CURRENT_USER IS OBJECT (
import_format dbms_cloud_oci_data_labeling_service_dataplane_import_format_t,
import_metadata_path dbms_cloud_oci_data_labeling_service_dataplane_import_metadata_path_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_initial_import_dataset_configuration_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_initial_import_dataset_configuration_t (
import_format dbms_cloud_oci_data_labeling_service_dataplane_import_format_t,
import_metadata_path dbms_cloud_oci_data_labeling_service_dataplane_import_metadata_path_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
import_format
(required)
import_metadata_path
(required)
DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_DATAPLANE_DATASET_T Type 🔗
A dataset is a logical collection of records. The dataset contains all the information necessary to describe a record's source, format, the type of annotations allowed for the record, and the labels allowed on annotations.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_dataplane_dataset_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
display_name varchar2(32767),
compartment_id varchar2(32767),
description varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2(32767),
lifecycle_details varchar2(32767),
lifecycle_substate varchar2(32767),
annotation_format varchar2(32767),
dataset_source_details dbms_cloud_oci_data_labeling_service_dataplane_dataset_source_details_t,
dataset_format_details dbms_cloud_oci_data_labeling_service_dataplane_dataset_format_details_t,
label_set dbms_cloud_oci_data_labeling_service_dataplane_label_set_t,
initial_record_generation_configuration dbms_cloud_oci_data_labeling_service_dataplane_initial_record_generation_configuration_t,
initial_import_dataset_configuration dbms_cloud_oci_data_labeling_service_dataplane_initial_import_dataset_configuration_t,
labeling_instructions varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
additional_properties json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_dataset_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_dataset_t (
id varchar2,
display_name varchar2,
compartment_id varchar2,
description varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2,
lifecycle_details varchar2,
lifecycle_substate varchar2,
annotation_format varchar2,
dataset_source_details dbms_cloud_oci_data_labeling_service_dataplane_dataset_source_details_t,
dataset_format_details dbms_cloud_oci_data_labeling_service_dataplane_dataset_format_details_t,
label_set dbms_cloud_oci_data_labeling_service_dataplane_label_set_t,
initial_record_generation_configuration dbms_cloud_oci_data_labeling_service_dataplane_initial_record_generation_configuration_t,
initial_import_dataset_configuration dbms_cloud_oci_data_labeling_service_dataplane_initial_import_dataset_configuration_t,
labeling_instructions varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
additional_properties json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
id
(required) The OCID of the Dataset.
display_name
(optional) A user-friendly display name for the resource.
compartment_id
(required) The OCID of the compartment of the resource.
description
(optional) A user provided description of the dataset
time_created
(required) The date and time the resource was created, in the timestamp format defined by RFC3339.
time_updated
(required) The date and time the resource was last updated, in the timestamp format defined by RFC3339.
lifecycle_state
(required) The state of a dataset. CREATING - The dataset is being created. It will transition to ACTIVE when it is ready for labeling. ACTIVE - The dataset is ready for labeling. UPDATING - The dataset is being updated. It and its related resources may be unavailable for other updates until it returns to ACTIVE. NEEDS_ATTENTION - A dataset updation operation has failed due to validation or other errors and needs attention. DELETING - The dataset and its related resources are being deleted. DELETED - The dataset has been deleted and is no longer available. FAILED - The dataset has failed due to validation or other errors.
(optional) A message describing the current state in more detail. For example, it can be used to provide actionable information for a resource in FAILED or NEEDS_ATTENTION state.
lifecycle_substate
(optional) The sub-state of the dataset. IMPORT_DATASET - The dataset is being imported.
Allowed values are: 'IMPORT_DATASET'
annotation_format
(required) The annotation format name required for labeling records.
dataset_source_details
(required)
dataset_format_details
(required)
label_set
(required)
initial_record_generation_configuration
(optional)
initial_import_dataset_configuration
(optional)
labeling_instructions
(optional) The labeling instructions for human labelers in rich text format
freeform_tags
(optional) A simple key-value pair that is applied without any predefined name, type, or scope. It exists for cross-compatibility only. For example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) The defined tags for this resource. Each key is predefined and scoped to a namespace. For example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
system_tags
(optional) The usage of system tag keys. These predefined keys are scoped to namespaces. For example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`
additional_properties
(optional) A simple key-value pair that is applied without any predefined name, type, or scope. It exists for cross-compatibility only. For example: `{\"bar-key\": \"value\"}`
DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_DATAPLANE_TEXT_FILE_TYPE_METADATA_T Type 🔗
Metadata for files with text content.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_dataplane_text_file_type_metadata_t FORCE AUTHID CURRENT_USER IS OBJECT (
format_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_text_file_type_metadata_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_text_file_type_metadata_t (
format_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
format_type
(required) It defines the format type of text files.
Allowed values are: 'DELIMITED'
DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_DATAPLANE_DELIMITED_FILE_TYPE_METADATA_T Type 🔗
Metadata of delimited files.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_dataplane_delimited_file_type_metadata_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_data_labeling_service_dataplane_text_file_type_metadata_t (
column_name varchar2(32767),
column_index number,
column_delimiter varchar2(32767),
line_delimiter varchar2(32767),
escape_character varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_delimited_file_type_metadata_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_delimited_file_type_metadata_t (
format_type varchar2,
column_name varchar2,
column_index number,
column_delimiter varchar2,
line_delimiter varchar2,
escape_character varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_data_labeling_service_dataplane_delimited_file_type_metadata_t is a subtype of the dbms_cloud_oci_data_labeling_service_dataplane_text_file_type_metadata_t type.
Fields
Field
Description
column_name
(optional) The name of a selected column.
column_index
(required) The index of a selected column. This is a zero-based index.
column_delimiter
(optional) A column delimiter
line_delimiter
(optional) A line delimiter.
escape_character
(optional) An escape character.
DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_DATAPLANE_DOCUMENT_DATASET_FORMAT_DETAILS_T Type 🔗
It indicates the dataset is comprised of document files. It is open for further configurability.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_dataplane_document_dataset_format_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_data_labeling_service_dataplane_dataset_format_details_t (
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_document_dataset_format_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_document_dataset_format_details_t (
format_type varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_data_labeling_service_dataplane_document_dataset_format_details_t is a subtype of the dbms_cloud_oci_data_labeling_service_dataplane_dataset_format_details_t type.
DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_DATAPLANE_DOCUMENT_ENTITY_METADATA_T Type 🔗
This is dedicated Entity to store Document related info.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_dataplane_document_entity_metadata_t FORCE AUTHID CURRENT_USER IS OBJECT (
page_number number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_document_entity_metadata_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_document_entity_metadata_t (
page_number number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
page_number
(required) This stores page number of document.
DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_DATAPLANE_DOCUMENT_METADATA_T Type 🔗
Collection of metadata related to document record.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_dataplane_document_metadata_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_data_labeling_service_dataplane_record_metadata_t (
job_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_document_metadata_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_document_metadata_t (
record_type varchar2,
job_id varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_data_labeling_service_dataplane_document_metadata_t is a subtype of the dbms_cloud_oci_data_labeling_service_dataplane_record_metadata_t type.
Fields
Field
Description
job_id
(optional) Job id ocid of OCR batch call.
DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_DATAPLANE_ERROR_T Type 🔗
Error Information.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_dataplane_error_t FORCE AUTHID CURRENT_USER IS OBJECT (
code varchar2(32767),
message varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_error_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_error_t (
code varchar2,
message varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
code
(required) A short error code that defines the error. It is for programmatic parsing.
message
(required) A human-readable error string.
DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_DATAPLANE_LABEL_TBL Type 🔗
Nested table type of dbms_cloud_oci_data_labeling_service_dataplane_label_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_dataplane_label_tbl FORCE IS TABLE OF (dbms_cloud_oci_data_labeling_service_dataplane_label_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_DATAPLANE_GENERIC_ENTITY_T Type 🔗
This is an extensible entity type for users, and the base entity type for some annotation formats.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_dataplane_generic_entity_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_data_labeling_service_dataplane_entity_t (
document_entity_metadata dbms_cloud_oci_data_labeling_service_dataplane_document_entity_metadata_t,
labels dbms_cloud_oci_data_labeling_service_dataplane_label_tbl,
extended_metadata json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_generic_entity_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_generic_entity_t (
entity_type varchar2,
document_entity_metadata dbms_cloud_oci_data_labeling_service_dataplane_document_entity_metadata_t,
labels dbms_cloud_oci_data_labeling_service_dataplane_label_tbl,
extended_metadata json_element_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_data_labeling_service_dataplane_generic_entity_t is a subtype of the dbms_cloud_oci_data_labeling_service_dataplane_entity_t type.
Fields
Field
Description
document_entity_metadata
(optional)
labels
(required) A collection of label entities.
extended_metadata
(optional) A simple key-value pair that is applied without any predefined name, type, or scope. It exists for cross-compatibility only. For example: `{\"bar-key\": \"value\"}`
DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_DATAPLANE_IMAGE_DATASET_FORMAT_DETAILS_T Type 🔗
It indicates the dataset is comprised of images.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_dataplane_image_dataset_format_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_data_labeling_service_dataplane_dataset_format_details_t (
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_image_dataset_format_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_image_dataset_format_details_t (
format_type varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_data_labeling_service_dataplane_image_dataset_format_details_t is a subtype of the dbms_cloud_oci_data_labeling_service_dataplane_dataset_format_details_t type.
DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_DATAPLANE_IMAGE_METADATA_T Type 🔗
Collection of metadata related to image record.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_dataplane_image_metadata_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_data_labeling_service_dataplane_record_metadata_t (
height number,
width number,
depth number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_image_metadata_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_image_metadata_t (
record_type varchar2,
height number,
width number,
depth number
) RETURN SELF AS RESULT
);
dbms_cloud_oci_data_labeling_service_dataplane_image_metadata_t is a subtype of the dbms_cloud_oci_data_labeling_service_dataplane_record_metadata_t type.
Fields
Field
Description
height
(optional) Height of the image record.
width
(optional) Width of the image record.
depth
(optional) Depth of the image record.
DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_DATAPLANE_IMAGE_OBJECT_SELECTION_ENTITY_T Type 🔗
This lets the labeler specify a series of coordinates in the image to represent an object and apply labels to it. The coordinates are connected in the order that they are provided. The last coordinate in the array is connected to the first coordinate.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_dataplane_image_object_selection_entity_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_data_labeling_service_dataplane_entity_t (
labels dbms_cloud_oci_data_labeling_service_dataplane_label_tbl,
bounding_polygon dbms_cloud_oci_data_labeling_service_dataplane_bounding_polygon_t,
extended_metadata json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_image_object_selection_entity_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_image_object_selection_entity_t (
entity_type varchar2,
labels dbms_cloud_oci_data_labeling_service_dataplane_label_tbl,
bounding_polygon dbms_cloud_oci_data_labeling_service_dataplane_bounding_polygon_t,
extended_metadata json_element_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_data_labeling_service_dataplane_image_object_selection_entity_t is a subtype of the dbms_cloud_oci_data_labeling_service_dataplane_entity_t type.
Fields
Field
Description
labels
(required) A collection of label entities.
bounding_polygon
(required)
extended_metadata
(optional) A simple key-value pair that is applied without any predefined name, type, or scope. It exists for cross-compatibility only. For example: `{\"bar-key\": \"value\"}`
DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_DATAPLANE_KEY_VALUE_SELECTION_ENTITY_T Type 🔗
This allows the labeler to apply label the highlighted text from OCR, this includes labelled and unlabelled data.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_dataplane_key_value_selection_entity_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_data_labeling_service_dataplane_entity_t (
text varchar2(32767),
labels dbms_cloud_oci_data_labeling_service_dataplane_label_tbl,
bounding_polygon dbms_cloud_oci_data_labeling_service_dataplane_bounding_polygon_t,
rotation number,
confidence number,
page_number number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_key_value_selection_entity_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_key_value_selection_entity_t (
entity_type varchar2,
text varchar2,
labels dbms_cloud_oci_data_labeling_service_dataplane_label_tbl,
bounding_polygon dbms_cloud_oci_data_labeling_service_dataplane_bounding_polygon_t,
rotation number,
confidence number,
page_number number
) RETURN SELF AS RESULT
);
dbms_cloud_oci_data_labeling_service_dataplane_key_value_selection_entity_t is a subtype of the dbms_cloud_oci_data_labeling_service_dataplane_entity_t type.
Fields
Field
Description
text
(required) Entity Name.
labels
(optional) A collection of label entities.
bounding_polygon
(required)
rotation
(optional) Integer value.
confidence
(required) float value, score from OCR.
page_number
(optional) Integer value.
DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_DATAPLANE_OBJECT_STORAGE_DATASET_SOURCE_DETAILS_T Type 🔗
Specifies the dataset location in object storage. This requires that all records are in this bucket, and under this prefix. We do not support a dataset with objects in arbitrary locations across buckets or prefixes.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_dataplane_object_storage_dataset_source_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_data_labeling_service_dataplane_dataset_source_details_t (
namespace varchar2(32767),
bucket varchar2(32767),
prefix varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_object_storage_dataset_source_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_object_storage_dataset_source_details_t (
source_type varchar2,
namespace varchar2,
bucket varchar2,
prefix varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_data_labeling_service_dataplane_object_storage_dataset_source_details_t is a subtype of the dbms_cloud_oci_data_labeling_service_dataplane_dataset_source_details_t type.
Fields
Field
Description
namespace
(required) The namespace of the bucket that contains the dataset data source.
bucket
(required) The object storage bucket that contains the dataset data source.
prefix
(optional) A common path prefix shared by the objects that make up the dataset. Except for the CSV file type, records are not generated for the objects whose names exactly match with the prefix.
DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_DATAPLANE_OBJECT_STORAGE_IMPORT_METADATA_PATH_T Type 🔗
Object Storage details for import metadata path.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_dataplane_object_storage_import_metadata_path_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_data_labeling_service_dataplane_import_metadata_path_t (
namespace varchar2(32767),
bucket varchar2(32767),
path varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_object_storage_import_metadata_path_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_object_storage_import_metadata_path_t (
source_type varchar2,
namespace varchar2,
bucket varchar2,
path varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_data_labeling_service_dataplane_object_storage_import_metadata_path_t is a subtype of the dbms_cloud_oci_data_labeling_service_dataplane_import_metadata_path_t type.
Fields
Field
Description
namespace
(required) Bucket namespace name
bucket
(required) Bucket name
path
(required) Path for the metadata file.
DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_DATAPLANE_SOURCE_DETAILS_T Type 🔗
The source information is a polymorphic entity. It captures the details of data used for record creation. The discriminator type must match the dataset's source type. The convention is enforced by the API.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_dataplane_source_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
source_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_source_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_source_details_t (
source_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
source_type
(required) The type of data source. OBJECT_STORAGE - The source details for an object storage bucket.
Allowed values are: 'OBJECT_STORAGE'
DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_DATAPLANE_OBJECT_STORAGE_SOURCE_DETAILS_T Type 🔗
Object Storage Source Details.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_dataplane_object_storage_source_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_data_labeling_service_dataplane_source_details_t (
relative_path varchar2(32767),
path varchar2(32767),
offset number,
length number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_object_storage_source_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_object_storage_source_details_t (
source_type varchar2,
relative_path varchar2,
path varchar2,
offset number,
length number
) RETURN SELF AS RESULT
);
dbms_cloud_oci_data_labeling_service_dataplane_object_storage_source_details_t is a subtype of the dbms_cloud_oci_data_labeling_service_dataplane_source_details_t type.
Fields
Field
Description
relative_path
(required) The path relative to the prefix specified in the dataset source details (file name).
path
(required) The full path of the file this record belongs to.
offset
(optional) The offset into the file containing the content.
length
(optional) The length from the offset into the file containing the content.
DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_DATAPLANE_RECORD_T Type 🔗
A record represents an entry in a dataset that needs labeling.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_dataplane_record_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
name varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
dataset_id varchar2(32767),
compartment_id varchar2(32767),
source_details dbms_cloud_oci_data_labeling_service_dataplane_source_details_t,
is_labeled number,
lifecycle_state varchar2(32767),
record_metadata dbms_cloud_oci_data_labeling_service_dataplane_record_metadata_t,
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_record_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_record_t (
id varchar2,
name varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
dataset_id varchar2,
compartment_id varchar2,
source_details dbms_cloud_oci_data_labeling_service_dataplane_source_details_t,
is_labeled number,
lifecycle_state varchar2,
record_metadata dbms_cloud_oci_data_labeling_service_dataplane_record_metadata_t,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
id
(required) The OCID of the record.
name
(required) The name is created by the user. It is unique and immutable.
time_created
(required) The date and time the resource was created, in the timestamp format defined by RFC3339.
time_updated
(required) The date and time the resource was updated, in the timestamp format defined by RFC3339.
dataset_id
(required) The OCID of the dataset to associate the record with.
compartment_id
(required) The OCID of the compartment for the task.
source_details
(required)
is_labeled
(required) Whether or not the record has been labeled and has associated annotations.
lifecycle_state
(required) The lifecycle state of the record. ACTIVE - The record is active and ready for labeling. INACTIVE - The record has been marked as inactive and should not be used for labeling. DELETED - The record has been deleted and is no longer available for labeling.
(optional) A simple key-value pair that is applied without any predefined name, type, or scope. It exists for cross-compatibility only. For example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) The defined tags for this resource. Each key is predefined and scoped to a namespace. For example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_DATAPLANE_RECORD_AGGREGATION_DIMENSIONS_T Type 🔗
The dimensions to summarize record information for a given dataset.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_dataplane_record_aggregation_dimensions_t FORCE AUTHID CURRENT_USER IS OBJECT (
is_labeled number,
annotation_label_contains varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_record_aggregation_dimensions_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_record_aggregation_dimensions_t (
is_labeled number,
annotation_label_contains varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
is_labeled
(optional) Whether or not the record has been labeled and has associated annotations.
annotation_label_contains
(optional) Whether or not the annotation contains a label.
DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_DATAPLANE_RECORD_ANALYTICS_AGGREGATION_T Type 🔗
Aggregation entities are required by the API consistency guidelines for API Consistency Guidelines#AnalyticsAPIs. These are used to summarize record information for a given dataset and are used to populate UI elements. Aggregations need to have the fields that identify the exact scope that they're summarizing. Any filters applied to the list API, have to show up in the aggregation.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_dataplane_record_analytics_aggregation_t FORCE AUTHID CURRENT_USER IS OBJECT (
l_count number,
dimensions dbms_cloud_oci_data_labeling_service_dataplane_record_aggregation_dimensions_t,
dataset_id varchar2(32767),
compartment_id varchar2(32767),
lifecycle_state varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_record_analytics_aggregation_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_record_analytics_aggregation_t (
l_count number,
dimensions dbms_cloud_oci_data_labeling_service_dataplane_record_aggregation_dimensions_t,
dataset_id varchar2,
compartment_id varchar2,
lifecycle_state varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
l_count
(required) the count of the matching results
dimensions
(optional)
dataset_id
(required) ocid of the dataset the annotation belongs to
compartment_id
(required) ocid of the compartment the records
lifecycle_state
(optional) Describes the lifecycle state.
DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_DATAPLANE_RECORD_ANALYTICS_AGGREGATION_TBL Type 🔗
Nested table type of dbms_cloud_oci_data_labeling_service_dataplane_record_analytics_aggregation_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_dataplane_record_analytics_aggregation_tbl FORCE IS TABLE OF (dbms_cloud_oci_data_labeling_service_dataplane_record_analytics_aggregation_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_DATAPLANE_RECORD_ANALYTICS_AGGREGATION_COLLECTION_T Type 🔗
Collection of records aggregated.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_dataplane_record_analytics_aggregation_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_data_labeling_service_dataplane_record_analytics_aggregation_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_record_analytics_aggregation_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_record_analytics_aggregation_collection_t (
items dbms_cloud_oci_data_labeling_service_dataplane_record_analytics_aggregation_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) The list of record entities.
DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_DATAPLANE_RECORD_SUMMARY_T Type 🔗
A record summary is the representation returned in list views. It is usually a subset of the full record entity and should not contain any potentially sensitive information.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_dataplane_record_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
name varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
dataset_id varchar2(32767),
compartment_id varchar2(32767),
is_labeled number,
lifecycle_state varchar2(32767),
record_metadata dbms_cloud_oci_data_labeling_service_dataplane_record_metadata_t,
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_record_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_record_summary_t (
id varchar2,
name varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
dataset_id varchar2,
compartment_id varchar2,
is_labeled number,
lifecycle_state varchar2,
record_metadata dbms_cloud_oci_data_labeling_service_dataplane_record_metadata_t,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
id
(required) The OCID of the record.
name
(required) The name is automatically assigned by the service. It is unique and immutable
time_created
(required) The date and time the resource was created, in the timestamp format defined by RFC3339.
time_updated
(required) The date and time the resource was updated, in the timestamp format defined by RFC3339.
dataset_id
(required) The OCID of the dataset to associate the record with.
compartment_id
(required) The OCID of the compartment for the task.
is_labeled
(required) Whether or not the record has been labeled and has associated annotations.
lifecycle_state
(required) Describes the lifecycle state.
record_metadata
(optional)
freeform_tags
(optional) A simple key-value pair that is applied without any predefined name, type, or scope. It exists for cross-compatibility only. For example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) The defined tags for this resource. Each key is predefined and scoped to a namespace. For example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_DATAPLANE_RECORD_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_data_labeling_service_dataplane_record_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_dataplane_record_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_data_labeling_service_dataplane_record_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_DATAPLANE_RECORD_COLLECTION_T Type 🔗
The results of a record search. It contains RecordSummary items and other data.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_dataplane_record_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_data_labeling_service_dataplane_record_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_record_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_record_collection_t (
items dbms_cloud_oci_data_labeling_service_dataplane_record_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) The list of records.
DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_DATAPLANE_TEXT_DATASET_FORMAT_DETAILS_T Type 🔗
It indicates the dataset is comprised of TXT files.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_dataplane_text_dataset_format_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_data_labeling_service_dataplane_dataset_format_details_t (
text_file_type_metadata dbms_cloud_oci_data_labeling_service_dataplane_text_file_type_metadata_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_text_dataset_format_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_text_dataset_format_details_t (
format_type varchar2,
text_file_type_metadata dbms_cloud_oci_data_labeling_service_dataplane_text_file_type_metadata_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_data_labeling_service_dataplane_text_dataset_format_details_t is a subtype of the dbms_cloud_oci_data_labeling_service_dataplane_dataset_format_details_t type.
Fields
Field
Description
text_file_type_metadata
(optional)
DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_DATAPLANE_TEXT_METADATA_T Type 🔗
Collection of metadata related to text record.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_dataplane_text_metadata_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_data_labeling_service_dataplane_record_metadata_t (
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_text_metadata_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_text_metadata_t (
record_type varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_data_labeling_service_dataplane_text_metadata_t is a subtype of the dbms_cloud_oci_data_labeling_service_dataplane_record_metadata_t type.
DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_DATAPLANE_TEXT_SPAN_T Type 🔗
A wrapper class for offset and length, which together, represent a span of text in a text document.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_dataplane_text_span_t FORCE AUTHID CURRENT_USER IS OBJECT (
offset number,
length number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_text_span_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_text_span_t (
offset number,
length number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
offset
(optional) The offset of the selected text within the entire text.
length
(optional) The length of the selected text.
DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_DATAPLANE_TEXT_SELECTION_ENTITY_T Type 🔗
This lets the labeler highlight text, by specifying an offset and a length, and apply labels to it.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_dataplane_text_selection_entity_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_data_labeling_service_dataplane_entity_t (
labels dbms_cloud_oci_data_labeling_service_dataplane_label_tbl,
text_span dbms_cloud_oci_data_labeling_service_dataplane_text_span_t,
extended_metadata json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_text_selection_entity_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_text_selection_entity_t (
entity_type varchar2,
labels dbms_cloud_oci_data_labeling_service_dataplane_label_tbl,
text_span dbms_cloud_oci_data_labeling_service_dataplane_text_span_t,
extended_metadata json_element_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_data_labeling_service_dataplane_text_selection_entity_t is a subtype of the dbms_cloud_oci_data_labeling_service_dataplane_entity_t type.
Fields
Field
Description
labels
(required) A collection of label entities.
text_span
(required)
extended_metadata
(optional) A simple key-value pair that is applied without any predefined name, type, or scope. It exists for cross-compatibility only. For example: `{\"bar-key\": \"value\"}`
DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_DATAPLANE_UPDATE_ANNOTATION_DETAILS_T Type 🔗
This is the payload sent in the CreateAnnotation operation. It contains all the information required for a user to create an annotation for a record.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_dataplane_update_annotation_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
entities dbms_cloud_oci_data_labeling_service_dataplane_entity_tbl,
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_update_annotation_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_update_annotation_details_t (
entities dbms_cloud_oci_data_labeling_service_dataplane_entity_tbl,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
entities
(optional) The entity types are validated against the dataset to ensure consistency.
freeform_tags
(optional) A simple key-value pair that is applied without any predefined name, type, or scope. It exists for cross-compatibility only. For example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) The defined tags for this resource. Each key is predefined and scoped to a namespace. For example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
DBMS_CLOUD_OCI_DATA_LABELING_SERVICE_DATAPLANE_UPDATE_RECORD_DETAILS_T Type 🔗
The details of the tags that is updated.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_data_labeling_service_dataplane_update_record_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
freeform_tags json_element_t,
defined_tags json_element_t,
record_metadata dbms_cloud_oci_data_labeling_service_dataplane_record_metadata_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_update_record_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_data_labeling_service_dataplane_update_record_details_t (
freeform_tags json_element_t,
defined_tags json_element_t,
record_metadata dbms_cloud_oci_data_labeling_service_dataplane_record_metadata_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
freeform_tags
(optional) A simple key-value pair that is applied without any predefined name, type, or scope. It exists for cross-compatibility only. For example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) The defined tags for this resource. Each key is predefined and scoped to a namespace. For example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`