REST Resource: referenceConflicts

  • A referenceConflict resource indicates a conflict between two reference files, detailing the matches identified at the time of the conflict.

  • The referenceConflict resource's JSON representation includes fields such as kind, status, expiryTime, matches, id, conflictingReferenceId, and originalReferenceId.

  • A ReferenceConflictMatch represents the specifics of a conflict between two references, including its type, length_ms, conflicting_reference_offset_ms, and original_reference_offset_ms.

  • The API provides methods to get specific reference conflict details and list unresolved reference conflicts.

Resource: ReferenceConflict

A referenceConflict resource identifies a conflict between two reference files and lists the matches that existed between those files when the conflict was identified.

JSON representation
{
 "kind": string,
 "status": string,
 "expiryTime": string,
 "matches": [
 {
 object (ReferenceConflictMatch )
 }
 ],
 "id": string,
 "conflictingReferenceId": string,
 "originalReferenceId": string
}
Fields
kind

string

The type of the API resource. For referenceConflict resources, the value is youtubePartner#referenceConflict.

status

string

The referenceConflict's status.

expiryTime

string

Conflict review expiry time.

matches[]

object (ReferenceConflictMatch )

The list of matches between conflicting and original references at the time of conflict creation.

id

string

A value that YouTube assigns and uses to uniquely identify a reference conflict.

conflictingReferenceId

string

An id of a conflicting reference.

originalReferenceId

string

An id of an original reference.

ReferenceConflictMatch

Represents conflict between two references.

JSON representation
{
 "type": string,
 "length_ms": string,
 "conflicting_reference_offset_ms": string,
 "original_reference_offset_ms": string
}
Fields
type

string

The referenceConflictMatch's type.

length_ms

string (int64 format)

Match length in milliseconds.

conflicting_reference_offset_ms

string (int64 format)

Conflicting reference offset in milliseconds.

original_reference_offset_ms

string (int64 format)

Original reference offset in milliseconds.

Methods

get

Retrieves information about the specified reference conflict.

list

Retrieves a list of unresolved reference conflicts.

All rights reserved. Java is a registered trademark of Oracle and/or its affiliates.

Last updated 2025年08月20日 UTC.