INPUT_OBJECT
CreateEntityIdentifier
link GraphQL Schema definition
1 input CreateEntityIdentifier { 3 2 ID! : 5 4 ID! : 7 6 String : 9 8 Boolean : 11 10 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. 15 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. 20 String : 23 22 String! : 25 24 UploadedFile : 27 26 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. 32 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. 38 Boolean : 40 }