INPUT_OBJECT

CreateEntityIdentifier

link GraphQL Schema definition

1input CreateEntityIdentifier {
3
2entityId: ID!
5
4identifierTypeId: ID!
7
6title: String
9
8isPriority: Boolean
11
10url: String
16
12# GraphQL-formatted JSON-like structure containing freeform metadata.
13# If a schema is associated with the entity type, the input will be
14# validated against the schema. Use this field _or_ `jsonstring`, not both.
15jsondata: JSONData
21
17# A string containing valid JSON with freeform metadata.
18# If a schema is associated with the entity type, the input will be
19# validated against the schema. Use this field _or_ `jsondata`, not both.
20jsonstring: String
23
22contentType: String!
25
24file: UploadedFile
27
26entityType: CreateEntityType
33
28# If the entity identifier type is image, the new file can automatically
29# be set on the entity as its profile image. This is off by default
30# (the entity profile image is not modified) but can be controlled
31# with this parameter.
32profileUpdateMode: SetEntityProfileImage
39
34# Indicates that the URL should be stored directly as a reference and
35# not uploaded to Veritone platform storage. This option is faster by
36# bypasses content validation and can result in data integrity errors
37# if the file is deleted.
38storeReference: Boolean
40}