{"openapi":"3.0.2","info":{"title":"Metadata service","description":"Create and update file metadata","version":"2.2.10"},"paths":{"/v1/health":{"get":{"tags":["Health"],"summary":"Healthcheck if all service dependencies are online.","description":"Return response that represents status of the database and kafka connections.","operationId":"get_health_v1_health_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}}}}},"/v1/item/{id}/":{"get":{"tags":["Items"],"summary":"Get an item by ID or check if an item exists","operationId":"get_item_v1_item__id___get","parameters":[{"required":true,"schema":{"title":"Id","type":"string","format":"uuid"},"name":"id","in":"path"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/GETItemResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/v1/item/":{"get":{"tags":["Items"],"summary":"Get zero or one item(s) by location","operationId":"get_item_by_location_v1_item__get","parameters":[{"required":true,"schema":{"title":"Name","type":"string"},"name":"name","in":"query"},{"required":false,"schema":{"title":"Parent Path","type":"string"},"name":"parent_path","in":"query"},{"required":true,"schema":{"title":"Container Code","type":"string"},"name":"container_code","in":"query"},{"required":true,"schema":{"$ref":"#/components/schemas/ContainerType"},"name":"container_type","in":"query"},{"required":true,"schema":{"title":"Zone","type":"integer"},"name":"zone","in":"query"},{"required":true,"schema":{"$ref":"#/components/schemas/ItemStatus"},"name":"status","in":"query"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/GETItemResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"put":{"tags":["Items"],"summary":"Update an item","operationId":"update_item_v1_item__put","parameters":[{"required":false,"schema":{"title":"Id","type":"string","format":"uuid"},"name":"id","in":"query"}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PUTItem"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PUTItemResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"post":{"tags":["Items"],"summary":"Create a new item","operationId":"create_item_v1_item__post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/POSTItem"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/POSTItemResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"tags":["Items"],"summary":"Permanently delete an item","operationId":"delete_item_v1_item__delete","parameters":[{"required":true,"schema":{"title":"Id","type":"string","format":"uuid"},"name":"id","in":"query"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DELETEItemResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"patch":{"tags":["Items"],"summary":"Move an item to or out of the trash","operationId":"trash_item_v1_item__patch","parameters":[{"required":true,"schema":{"title":"Id","type":"string","format":"uuid"},"name":"id","in":"query"},{"required":true,"schema":{"$ref":"#/components/schemas/ItemStatus"},"name":"status","in":"query"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PATCHItemResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/v1/item/mark/":{"put":{"tags":["Items"],"summary":"Mark Item Restore","operationId":"mark_item_restore_v1_item_mark__put","parameters":[{"required":false,"schema":{"title":"Id","type":"string","format":"uuid"},"name":"id","in":"query"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"tags":["Items"],"summary":"Mark Item Deleted","operationId":"mark_item_deleted_v1_item_mark__delete","parameters":[{"required":false,"schema":{"title":"Id","type":"string","format":"uuid"},"name":"id","in":"query"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/v1/items/batch/":{"get":{"tags":["Items"],"summary":"Get many items by IDs","operationId":"get_items_by_ids_v1_items_batch__get","parameters":[{"required":false,"schema":{"title":"Ids","type":"array","items":{"type":"string","format":"uuid"}},"name":"ids","in":"query"},{"required":false,"schema":{"title":"Page Size","type":"integer","default":10},"name":"page_size","in":"query"},{"required":false,"schema":{"title":"Page","type":"integer","default":0},"name":"page","in":"query"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/GETItemResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"put":{"tags":["Items"],"summary":"Update many items","operationId":"update_items_v1_items_batch__put","parameters":[{"required":false,"schema":{"title":"Ids","type":"array","items":{"type":"string","format":"uuid"}},"name":"ids","in":"query"}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PUTItems"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PUTItemResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"post":{"tags":["Items"],"summary":"Create many new items","operationId":"create_items_v1_items_batch__post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/POSTItems"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/POSTItemResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"tags":["Items"],"summary":"Permanently delete many items by IDs","operationId":"delete_items_by_ids_v1_items_batch__delete","parameters":[{"required":false,"schema":{"title":"Ids","type":"array","items":{"type":"string","format":"uuid"}},"name":"ids","in":"query"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DELETEItemResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/v1/items/search/":{"get":{"tags":["Items"],"summary":"Get all items by location","operationId":"get_items_by_location_v1_items_search__get","parameters":[{"required":false,"schema":{"title":"Page","type":"integer","default":0},"name":"page","in":"query"},{"required":false,"schema":{"title":"Page Size","type":"integer","default":25},"name":"page_size","in":"query"},{"required":false,"schema":{"title":"Order","type":"string","default":"asc"},"name":"order","in":"query"},{"required":false,"schema":{"title":"Sorting","type":"string","default":"created_time"},"name":"sorting","in":"query"},{"required":false,"schema":{"title":"Container Code","type":"string"},"name":"container_code","in":"query"},{"required":false,"schema":{"title":"Zone","type":"integer"},"name":"zone","in":"query"},{"required":false,"schema":{"title":"Recursive","type":"boolean","default":false},"name":"recursive","in":"query"},{"required":false,"schema":{"allOf":[{"$ref":"#/components/schemas/ItemStatus"}],"default":"ACTIVE"},"name":"status","in":"query"},{"required":false,"schema":{"title":"Parent Path","type":"string"},"name":"parent_path","in":"query"},{"required":false,"schema":{"title":"Restore Path","type":"string"},"name":"restore_path","in":"query"},{"required":false,"schema":{"title":"Name","type":"string"},"name":"name","in":"query"},{"required":false,"schema":{"title":"Owner","type":"string"},"name":"owner","in":"query"},{"required":false,"schema":{"title":"Type","type":"string"},"name":"type","in":"query"},{"required":false,"schema":{"title":"Container Type","type":"string"},"name":"container_type","in":"query"},{"required":false,"schema":{"title":"Auth User","type":"string"},"name":"auth_user","in":"query"},{"required":false,"schema":{"title":"Project Role","type":"string"},"name":"project_role","in":"query"},{"required":false,"schema":{"title":"Fav User","type":"string"},"name":"fav_user","in":"query"},{"required":false,"schema":{"title":"Last Updated Start","type":"string","format":"date-time"},"name":"last_updated_start","in":"query"},{"required":false,"schema":{"title":"Last Updated End","type":"string","format":"date-time"},"name":"last_updated_end","in":"query"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/GETItemResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/v1/items/mark/":{"get":{"tags":["Items"],"summary":"Get Items Mark","operationId":"get_items_mark_v1_items_mark__get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}}}},"delete":{"tags":["Items"],"summary":"Mark Items Deleted","operationId":"mark_items_deleted_v1_items_mark__delete","parameters":[{"required":false,"schema":{"title":"Ids","type":"array","items":{"type":"string","format":"uuid"}},"name":"ids","in":"query"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/v1/items/batch/bequeath/":{"put":{"tags":["Items"],"summary":"Bequeath properties to a folder's children","operationId":"update_items_bequeath_v1_items_batch_bequeath__put","parameters":[{"required":false,"schema":{"title":"Id","type":"string","format":"uuid"},"name":"id","in":"query"}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PUTItemsBequeath"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PUTItemsBequeathResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/v1/template/{id}/":{"get":{"tags":["Attribute templates"],"summary":"Get an attribute template","operationId":"get_attribute_template_v1_template__id___get","parameters":[{"required":true,"schema":{"title":"Id","type":"string","format":"uuid"},"name":"id","in":"path"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/GETTemplateResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/v1/template/":{"get":{"tags":["Attribute templates"],"summary":"Get all attribute templates associated with a project","operationId":"get_attribute_templates_v1_template__get","parameters":[{"required":true,"schema":{"title":"Project Code","type":"string"},"name":"project_code","in":"query"},{"required":false,"schema":{"title":"Name","type":"string"},"name":"name","in":"query"},{"required":false,"schema":{"title":"Page Size","type":"integer","default":10},"name":"page_size","in":"query"},{"required":false,"schema":{"title":"Page","type":"integer","default":0},"name":"page","in":"query"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"put":{"tags":["Attribute templates"],"summary":"Update an attribute template","operationId":"update_attribute_template_v1_template__put","parameters":[{"required":false,"schema":{"title":"Id","type":"string","format":"uuid"},"name":"id","in":"query"}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PUTTemplate"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PUTTemplateResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"post":{"tags":["Attribute templates"],"summary":"Create a new attribute template","operationId":"create_attribute_template_v1_template__post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/POSTTemplate"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/POSTTemplateResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"tags":["Attribute templates"],"summary":"Delete an attribute template","operationId":"delete_attribute_template_v1_template__delete","parameters":[{"required":true,"schema":{"title":"Id","type":"string","format":"uuid"},"name":"id","in":"query"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DELETETemplateResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/v1/collection/search/":{"get":{"tags":["Collections"],"summary":"Get collections that belong to a user per project","operationId":"get_collections_v1_collection_search__get","parameters":[{"required":false,"schema":{"title":"Page","type":"integer","default":0},"name":"page","in":"query"},{"required":false,"schema":{"title":"Page Size","type":"integer","default":25},"name":"page_size","in":"query"},{"required":false,"schema":{"title":"Order","type":"string","default":"asc"},"name":"order","in":"query"},{"required":false,"schema":{"title":"Sorting","type":"string","default":"created_time"},"name":"sorting","in":"query"},{"required":true,"schema":{"title":"Owner","type":"string"},"name":"owner","in":"query"},{"required":true,"schema":{"title":"Container Code","type":"string"},"name":"container_code","in":"query"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/GETCollectionResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/v1/collection/items/":{"get":{"tags":["Collections"],"summary":"Get items that belong to a collection","operationId":"get_collection_items_v1_collection_items__get","parameters":[{"required":false,"schema":{"title":"Page","type":"integer","default":0},"name":"page","in":"query"},{"required":false,"schema":{"title":"Page Size","type":"integer","default":25},"name":"page_size","in":"query"},{"required":false,"schema":{"title":"Order","type":"string","default":"asc"},"name":"order","in":"query"},{"required":false,"schema":{"title":"Sorting","type":"string","default":"created_time"},"name":"sorting","in":"query"},{"required":true,"schema":{"title":"Id","type":"string","format":"uuid"},"name":"id","in":"query"},{"required":false,"schema":{"allOf":[{"$ref":"#/components/schemas/ItemStatus"}],"default":"ACTIVE"},"name":"status","in":"query"},{"required":true,"schema":{"title":"Container Code","type":"string"},"name":"container_code","in":"query"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/GETCollectionItemsResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"post":{"tags":["Collections"],"summary":"Add items to a collection","operationId":"add_items_to_collection_v1_collection_items__post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/POSTCollectionItems"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/POSTCollectionItemsResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"tags":["Collections"],"summary":"Remove items from a collection","operationId":"remove_items_from_collection_v1_collection_items__delete","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DELETECollectionItems"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DELETECollectionItemsResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/v1/collection/{id}/":{"get":{"tags":["Collections"],"summary":"Get collection by id","operationId":"get_collections_id_v1_collection__id___get","parameters":[{"required":true,"schema":{"title":"Id","type":"string","format":"uuid"},"name":"id","in":"path"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/GETCollectionResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/v1/collection/":{"put":{"tags":["Collections"],"summary":"Update a collection(s) name","operationId":"update_collection_name_v1_collection__put","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PUTCollections"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PUTCollectionResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"post":{"tags":["Collections"],"summary":"Create a collection","operationId":"create_new_collection_v1_collection__post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/POSTCollection"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/POSTCollectionResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"tags":["Collections"],"summary":"Delete a collection","operationId":"remove_collection_v1_collection__delete","parameters":[{"required":false,"schema":{"title":"Id","type":"string","format":"uuid"},"name":"id","in":"query"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DELETECollectionResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/v1/favourite/":{"post":{"tags":["Favourites"],"summary":"Favourite an entity","operationId":"create_favourite_v1_favourite__post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/POSTFavourite"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/POSTFavouriteResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"tags":["Favourites"],"summary":"Remove an existing favourite","operationId":"delete_favourite_v1_favourite__delete","parameters":[{"required":true,"schema":{"title":"Id","type":"string","format":"uuid"},"name":"id","in":"query"},{"required":false,"schema":{"title":"Type","type":"string","default":"item"},"name":"type","in":"query"},{"required":true,"schema":{"title":"User","type":"string"},"name":"user","in":"query"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DELETEFavouriteResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"patch":{"tags":["Favourites"],"summary":"Pin or unpin an existing favourite","operationId":"pin_favourite_v1_favourite__patch","parameters":[{"required":true,"schema":{"title":"User","type":"string"},"name":"user","in":"query"},{"required":true,"schema":{"title":"Id","type":"string","format":"uuid"},"name":"id","in":"query"},{"required":false,"schema":{"title":"Type","type":"string","default":"item"},"name":"type","in":"query"},{"required":true,"schema":{"title":"Pinned","type":"boolean"},"name":"pinned","in":"query"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PATCHFavouriteResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/v1/favourites/{user}/":{"get":{"tags":["Favourites"],"summary":"Get all favourites for a user","operationId":"get_favourites_v1_favourites__user___get","parameters":[{"required":true,"schema":{"title":"User","type":"string"},"name":"user","in":"path"},{"required":false,"schema":{"title":"Page","type":"integer","default":0},"name":"page","in":"query"},{"required":false,"schema":{"title":"Page Size","type":"integer","default":25},"name":"page_size","in":"query"},{"required":false,"schema":{"title":"Order","type":"string","default":"asc"},"name":"order","in":"query"},{"required":false,"schema":{"title":"Sorting","type":"string","default":"created_time"},"name":"sorting","in":"query"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/GETFavouriteResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/v1/favourites/":{"delete":{"tags":["Favourites"],"summary":"Remove many existing favourites","operationId":"delete_favourites_v1_favourites__delete","parameters":[{"required":true,"schema":{"title":"User","type":"string"},"name":"user","in":"query"}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DELETEFavourites"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DELETEFavouriteResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"patch":{"tags":["Favourites"],"summary":"Pin or unpin many existing favourites","operationId":"pin_favourites_v1_favourites__patch","parameters":[{"required":true,"schema":{"title":"User","type":"string"},"name":"user","in":"query"}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PATCHFavourites"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PATCHFavouriteResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/v1/lineage/{item_id}/":{"get":{"tags":["Lineage and provenance"],"summary":"Get lineage and provenance for an item","operationId":"get_lineage_provenance_v1_lineage__item_id___get","parameters":[{"required":true,"schema":{"title":"Item Id","type":"string","format":"uuid"},"name":"item_id","in":"path"}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/GETLineageProvenanceResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}}},"components":{"schemas":{"Collection":{"title":"Collection","required":["id","name"],"type":"object","properties":{"id":{"title":"Id","type":"string","format":"uuid"},"name":{"title":"Name","type":"string"}}},"ContainerType":{"title":"ContainerType","enum":["project","dataset"],"type":"string","description":"An enumeration."},"DELETECollectionItems":{"title":"DELETECollectionItems","required":["id","item_ids"],"type":"object","properties":{"id":{"title":"Id","type":"string","format":"uuid"},"item_ids":{"title":"Item Ids","type":"array","items":{"type":"string","format":"uuid"}}}},"DELETECollectionItemsResponse":{"title":"DELETECollectionItemsResponse","type":"object","properties":{"code":{"allOf":[{"$ref":"#/components/schemas/EAPIResponseCode"}],"default":200},"error_msg":{"title":"Error Msg","type":"string","default":""},"page":{"title":"Page","type":"integer","default":0},"total":{"title":"Total","type":"integer","default":1},"num_of_pages":{"title":"Num Of Pages","type":"integer","default":1},"result":{"title":"Result","type":"array","items":{},"default":[]}}},"DELETECollectionResponse":{"title":"DELETECollectionResponse","type":"object","properties":{"code":{"allOf":[{"$ref":"#/components/schemas/EAPIResponseCode"}],"default":200},"error_msg":{"title":"Error Msg","type":"string","default":""},"page":{"title":"Page","type":"integer","default":0},"total":{"title":"Total","type":"integer","default":1},"num_of_pages":{"title":"Num Of Pages","type":"integer","default":1},"result":{"title":"Result","type":"array","items":{},"default":[]}}},"DELETEFavouriteResponse":{"title":"DELETEFavouriteResponse","type":"object","properties":{"code":{"allOf":[{"$ref":"#/components/schemas/EAPIResponseCode"}],"default":200},"error_msg":{"title":"Error Msg","type":"string","default":""},"page":{"title":"Page","type":"integer","default":0},"total":{"title":"Total","type":"integer","default":1},"num_of_pages":{"title":"Num Of Pages","type":"integer","default":1},"result":{"title":"Result","type":"array","items":{},"default":[]}}},"DELETEFavourites":{"title":"DELETEFavourites","required":["favourites"],"type":"object","properties":{"favourites":{"title":"Favourites","type":"array","items":{"$ref":"#/components/schemas/Favourite"}}}},"DELETEItemResponse":{"title":"DELETEItemResponse","type":"object","properties":{"code":{"allOf":[{"$ref":"#/components/schemas/EAPIResponseCode"}],"default":200},"error_msg":{"title":"Error Msg","type":"string","default":""},"page":{"title":"Page","type":"integer","default":0},"total":{"title":"Total","type":"integer","default":1},"num_of_pages":{"title":"Num Of Pages","type":"integer","default":1},"result":{"title":"Result","type":"array","items":{},"default":[]}}},"DELETETemplateResponse":{"title":"DELETETemplateResponse","type":"object","properties":{"code":{"allOf":[{"$ref":"#/components/schemas/EAPIResponseCode"}],"default":200},"error_msg":{"title":"Error Msg","type":"string","default":""},"page":{"title":"Page","type":"integer","default":0},"total":{"title":"Total","type":"integer","default":1},"num_of_pages":{"title":"Num Of Pages","type":"integer","default":1},"result":{"title":"Result","type":"array","items":{},"default":[]}}},"EAPIResponseCode":{"title":"EAPIResponseCode","enum":[200,400,401,403,404,409,413,500],"description":"An enumeration."},"Favourite":{"title":"Favourite","required":["id"],"type":"object","properties":{"id":{"title":"Id","type":"string","format":"uuid"},"type":{"title":"Type","type":"string","default":"item"}}},"GETCollectionItemsResponse":{"title":"GETCollectionItemsResponse","type":"object","properties":{"code":{"allOf":[{"$ref":"#/components/schemas/EAPIResponseCode"}],"default":200},"error_msg":{"title":"Error Msg","type":"string","default":""},"page":{"title":"Page","type":"integer","default":0},"total":{"title":"Total","type":"integer","default":1},"num_of_pages":{"title":"Num Of Pages","type":"integer","default":1},"result":{"title":"Result","type":"object","default":{},"example":{"id":"85465212-168a-4f0c-a7aa-f3a19795d2ff","parent":"28c608ac-1693-4318-a1c4-412caf2cd74a","parent_path":"path/to/file","type":"file","zone":0,"name":"filename","size":0,"owner":"username","container_code":"project_code","container_type":"project","created_time":"2022-04-13 13:30:10.890347","last_updated_time":"2022-04-13 13:30:10.890347","storage":{"id":"ba623005-8183-419a-972a-e4ce0d539349","location_uri":"https://example.com/item","version":"1.0"},"extended":{"id":"dc763d28-7e74-4db3-a702-fa719aa702c6","extra":{"tags":["tag1","tag2"],"system_tags":["tag1","tag2"],"attributes":{"101778d7-a628-41ea-823b-e4b377f3476c":{"key1":"value1","key2":"value2"}}}}}}}},"GETCollectionResponse":{"title":"GETCollectionResponse","type":"object","properties":{"code":{"allOf":[{"$ref":"#/components/schemas/EAPIResponseCode"}],"default":200},"error_msg":{"title":"Error Msg","type":"string","default":""},"page":{"title":"Page","type":"integer","default":0},"total":{"title":"Total","type":"integer","default":1},"num_of_pages":{"title":"Num Of Pages","type":"integer","default":1},"result":{"title":"Result","type":"array","items":{},"default":{},"example":[{"id":"52c4a134-8550-4acc-9ab9-596548c91c52","name":"collection1","owner":"admin","container_code":"project123","created_time":"2022-04-13 13:30:10.890347","last_updated_time":"2022-04-13 13:30:10.890347"}]}}},"GETFavouriteResponse":{"title":"GETFavouriteResponse","type":"object","properties":{"code":{"allOf":[{"$ref":"#/components/schemas/EAPIResponseCode"}],"default":200},"error_msg":{"title":"Error Msg","type":"string","default":""},"page":{"title":"Page","type":"integer","default":0},"total":{"title":"Total","type":"integer","default":1},"num_of_pages":{"title":"Num Of Pages","type":"integer","default":1},"result":{"title":"Result","type":"object","default":{},"example":{"id":"5bc614a6-0930-435f-97a1-72f97b227039","type":"file","name":"my_file.txt","display_path":"My Project/Core/Home","pinned":false}}}},"GETItemResponse":{"title":"GETItemResponse","type":"object","properties":{"code":{"allOf":[{"$ref":"#/components/schemas/EAPIResponseCode"}],"default":200},"error_msg":{"title":"Error Msg","type":"string","default":""},"page":{"title":"Page","type":"integer","default":0},"total":{"title":"Total","type":"integer","default":1},"num_of_pages":{"title":"Num Of Pages","type":"integer","default":1},"result":{"title":"Result","type":"object","default":{},"example":{"id":"85465212-168a-4f0c-a7aa-f3a19795d2ff","parent":"28c608ac-1693-4318-a1c4-412caf2cd74a","parent_path":"path/to/file","status":"ACTIVE","type":"file","zone":0,"name":"filename","size":0,"owner":"username","container_code":"project_code","container_type":"project","created_time":"2022-04-13 13:30:10.890347","last_updated_time":"2022-04-13 13:30:10.890347","storage":{"id":"ba623005-8183-419a-972a-e4ce0d539349","location_uri":"https://example.com/item","version":"1.0"},"extended":{"id":"dc763d28-7e74-4db3-a702-fa719aa702c6","extra":{"tags":["tag1","tag2"],"system_tags":["tag1","tag2"],"attributes":{"101778d7-a628-41ea-823b-e4b377f3476c":{"key1":"value1","key2":"value2"}}}}}}}},"GETLineageProvenanceResponse":{"title":"GETLineageProvenanceResponse","type":"object","properties":{"code":{"allOf":[{"$ref":"#/components/schemas/EAPIResponseCode"}],"default":200},"error_msg":{"title":"Error Msg","type":"string","default":""},"page":{"title":"Page","type":"integer","default":0},"total":{"title":"Total","type":"integer","default":1},"num_of_pages":{"title":"Num Of Pages","type":"integer","default":1},"result":{"title":"Result","type":"object","default":{},"example":{"lineage":{"176c729a-b85a-494c-94ac-e86e78b054fa":{"tfrm_type":"COPY_TO_ZONE","consumes":["ecbe5a8a-4324-4350-9af2-a444fbf55066"],"produces":["df77c805-e824-46e7-a465-5837eae26d89"]},"991fe983-855e-4581-b0c9-e511642161a1":{"tfrm_type":"ARCHIVE","consumes":["df77c805-e824-46e7-a465-5837eae26d89"]}},"provenance":{"ecbe5a8a-4324-4350-9af2-a444fbf55066":{"id":"8ea0d88c-6d16-4fb2-9696-7d9f6ed9387b","lineage_id":"176c729a-b85a-494c-94ac-e86e78b054fa","snapshot_time":"2023-03-22 15:10:58.703542","parent":"a3f64e1f-be8b-4c97-8f77-994f5529b969","parent_path":"user/test_folder","status":"ACTIVE","type":"file","zone":0,"name":"hour.flac","size":0,"owner":"lopezkathy","container_code":"test_container","container_type":"project"},"df77c805-e824-46e7-a465-5837eae26d89":{"id":"af682935-63f1-4f77-b111-441043165163","lineage_id":"991fe983-855e-4581-b0c9-e511642161a1","snapshot_time":"2023-03-22 15:10:58.774891","parent_path":"user/test_folder","status":"ARCHIVED","type":"file","zone":1,"name":"official.webm","size":0,"owner":"ryan64","container_code":"test_container","container_type":"project"}}}}}},"GETTemplateResponse":{"title":"GETTemplateResponse","type":"object","properties":{"code":{"allOf":[{"$ref":"#/components/schemas/EAPIResponseCode"}],"default":200},"error_msg":{"title":"Error Msg","type":"string","default":""},"page":{"title":"Page","type":"integer","default":0},"total":{"title":"Total","type":"integer","default":1},"num_of_pages":{"title":"Num Of Pages","type":"integer","default":1},"result":{"title":"Result","type":"object","default":{},"example":{"id":"85465212-168a-4f0c-a7aa-f3a19795d2ff","name":"template_name","project_code":"project0422","attributes":[{"name":"attribute_1","optional":true,"type":"text"},{"name":"attribute_2","optional":true,"type":"multiple_choice","options":["val1, val2"]}]}}}},"HTTPValidationError":{"title":"HTTPValidationError","type":"object","properties":{"detail":{"title":"Detail","type":"array","items":{"$ref":"#/components/schemas/ValidationError"}}}},"ItemStatus":{"title":"ItemStatus","enum":["REGISTERED","ACTIVE","ARCHIVED"],"type":"string","description":"The new enum type for file status.\n\n- REGISTERED means file is created by upload service but not complete yet. either in progress or fail.\n- ACTIVE means file uploading is complete.\n- ARCHIVED means the file has been deleted."},"PATCHFavourite":{"title":"PATCHFavourite","required":["id","user","pinned"],"type":"object","properties":{"id":{"title":"Id","type":"string","format":"uuid"},"type":{"title":"Type","type":"string","default":"item"},"user":{"title":"User","type":"string"},"pinned":{"title":"Pinned","type":"boolean"}}},"PATCHFavouriteResponse":{"title":"PATCHFavouriteResponse","type":"object","properties":{"code":{"allOf":[{"$ref":"#/components/schemas/EAPIResponseCode"}],"default":200},"error_msg":{"title":"Error Msg","type":"string","default":""},"page":{"title":"Page","type":"integer","default":0},"total":{"title":"Total","type":"integer","default":1},"num_of_pages":{"title":"Num Of Pages","type":"integer","default":1},"result":{"title":"Result","type":"object","default":{},"example":{"id":"5bc614a6-0930-435f-97a1-72f97b227039","type":"file","name":"my_file.txt","display_path":"My Project/Core/Home","pinned":false}}}},"PATCHFavourites":{"title":"PATCHFavourites","required":["favourites"],"type":"object","properties":{"favourites":{"title":"Favourites","type":"array","items":{"$ref":"#/components/schemas/PATCHFavourite"}}}},"PATCHItemResponse":{"title":"PATCHItemResponse","type":"object","properties":{"code":{"allOf":[{"$ref":"#/components/schemas/EAPIResponseCode"}],"default":200},"error_msg":{"title":"Error Msg","type":"string","default":""},"page":{"title":"Page","type":"integer","default":0},"total":{"title":"Total","type":"integer","default":1},"num_of_pages":{"title":"Num Of Pages","type":"integer","default":1},"result":{"title":"Result","type":"object","default":{},"example":{"id":"85465212-168a-4f0c-a7aa-f3a19795d2ff","parent":"28c608ac-1693-4318-a1c4-412caf2cd74a","parent_path":"path/to/file","status":"ACTIVE","type":"file","zone":0,"name":"filename","size":0,"owner":"username","container_code":"project_code","container_type":"project","created_time":"2022-04-13 13:30:10.890347","last_updated_time":"2022-04-13 13:30:10.890347","storage":{"id":"ba623005-8183-419a-972a-e4ce0d539349","location_uri":"https://example.com/item","version":"1.0"},"extended":{"id":"dc763d28-7e74-4db3-a702-fa719aa702c6","extra":{"tags":["tag1","tag2"],"system_tags":["tag1","tag2"],"attributes":{"101778d7-a628-41ea-823b-e4b377f3476c":{"key1":"value1","key2":"value2"}}}}}}}},"POSTCollection":{"title":"POSTCollection","required":["owner","container_code","name"],"type":"object","properties":{"id":{"title":"Id","type":"string","format":"uuid","example":"3fa85f64-5717-4562-b3fc-2c963f66afa6"},"owner":{"title":"Owner","type":"string"},"container_code":{"title":"Container Code","type":"string"},"name":{"title":"Name","type":"string"}}},"POSTCollectionItems":{"title":"POSTCollectionItems","required":["id","item_ids"],"type":"object","properties":{"id":{"title":"Id","type":"string","format":"uuid"},"item_ids":{"title":"Item Ids","type":"array","items":{"type":"string","format":"uuid"}}}},"POSTCollectionItemsResponse":{"title":"POSTCollectionItemsResponse","type":"object","properties":{"code":{"allOf":[{"$ref":"#/components/schemas/EAPIResponseCode"}],"default":200},"error_msg":{"title":"Error Msg","type":"string","default":""},"page":{"title":"Page","type":"integer","default":0},"total":{"title":"Total","type":"integer","default":1},"num_of_pages":{"title":"Num Of Pages","type":"integer","default":1},"result":{"title":"Result","type":"array","items":{},"default":[],"example":["3b3aad9e-2a39-4153-8146-87fb0923bab8","95f1c2ac-dd77-43b4-af53-2ce8f901ff78"]}}},"POSTCollectionResponse":{"title":"POSTCollectionResponse","type":"object","properties":{"code":{"allOf":[{"$ref":"#/components/schemas/EAPIResponseCode"}],"default":200},"error_msg":{"title":"Error Msg","type":"string","default":""},"page":{"title":"Page","type":"integer","default":0},"total":{"title":"Total","type":"integer","default":1},"num_of_pages":{"title":"Num Of Pages","type":"integer","default":1},"result":{"title":"Result","type":"array","items":{},"default":{},"example":[{"id":"52c4a134-8550-4acc-9ab9-596548c91c52","name":"collection1","owner":"admin","container_code":"project123","created_time":"2022-04-13 13:30:10.890347","last_updated_time":"2022-04-13 13:30:10.890347"}]}}},"POSTFavourite":{"title":"POSTFavourite","required":["id","user","zone","container_code"],"type":"object","properties":{"id":{"title":"Id","type":"string","format":"uuid"},"type":{"title":"Type","type":"string","default":"item"},"user":{"title":"User","type":"string"},"zone":{"title":"Zone","type":"integer"},"container_code":{"title":"Container Code","type":"string"}}},"POSTFavouriteResponse":{"title":"POSTFavouriteResponse","type":"object","properties":{"code":{"allOf":[{"$ref":"#/components/schemas/EAPIResponseCode"}],"default":200},"error_msg":{"title":"Error Msg","type":"string","default":""},"page":{"title":"Page","type":"integer","default":0},"total":{"title":"Total","type":"integer","default":1},"num_of_pages":{"title":"Num Of Pages","type":"integer","default":1},"result":{"title":"Result","type":"object","default":{},"example":{"id":"5bc614a6-0930-435f-97a1-72f97b227039","type":"file","name":"my_file.txt","display_path":"My Project/Core/Home","pinned":false}}}},"POSTItem":{"title":"POSTItem","required":["container_code","name","owner"],"type":"object","properties":{"id":{"title":"Id","type":"string","format":"uuid"},"parent":{"title":"Parent","type":"string","format":"uuid","example":"3fa85f64-5717-4562-b3fc-2c963f66afa6"},"parent_path":{"title":"Parent Path","type":"string","example":"path/to/file"},"container_code":{"title":"Container Code","type":"string"},"container_type":{"title":"Container Type","type":"string","default":"project"},"type":{"title":"Type","type":"string","default":"file"},"status":{"allOf":[{"$ref":"#/components/schemas/ItemStatus"}],"default":"REGISTERED"},"zone":{"title":"Zone","type":"integer","default":0},"name":{"title":"Name","type":"string","example":"file_name.txt"},"size":{"title":"Size","type":"integer","default":0},"owner":{"title":"Owner","type":"string"},"upload_id":{"title":"Upload Id","type":"string"},"location_uri":{"title":"Location Uri","type":"string"},"version":{"title":"Version","type":"string"},"tags":{"title":"Tags","type":"array","items":{"type":"string"},"default":[]},"system_tags":{"title":"System Tags","type":"array","items":{"type":"string"},"default":[]},"attribute_template_id":{"title":"Attribute Template Id","type":"string","format":"uuid"},"attributes":{"title":"Attributes","type":"object","default":{}},"tfrm_source":{"title":"Tfrm Source","type":"string","format":"uuid"},"tfrm_type":{"$ref":"#/components/schemas/TransformationType"}}},"POSTItemResponse":{"title":"POSTItemResponse","type":"object","properties":{"code":{"allOf":[{"$ref":"#/components/schemas/EAPIResponseCode"}],"default":200},"error_msg":{"title":"Error Msg","type":"string","default":""},"page":{"title":"Page","type":"integer","default":0},"total":{"title":"Total","type":"integer","default":1},"num_of_pages":{"title":"Num Of Pages","type":"integer","default":1},"result":{"title":"Result","type":"object","default":{},"example":{"id":"85465212-168a-4f0c-a7aa-f3a19795d2ff","parent":"28c608ac-1693-4318-a1c4-412caf2cd74a","parent_path":"path/to/file","status":"ACTIVE","type":"file","zone":0,"name":"filename","size":0,"owner":"username","container_code":"project_code","container_type":"project","created_time":"2022-04-13 13:30:10.890347","last_updated_time":"2022-04-13 13:30:10.890347","storage":{"id":"ba623005-8183-419a-972a-e4ce0d539349","location_uri":"https://example.com/item","version":"1.0"},"extended":{"id":"dc763d28-7e74-4db3-a702-fa719aa702c6","extra":{"tags":["tag1","tag2"],"system_tags":["tag1","tag2"],"attributes":{"101778d7-a628-41ea-823b-e4b377f3476c":{"key1":"value1","key2":"value2"}}}}}}}},"POSTItems":{"title":"POSTItems","required":["items"],"type":"object","properties":{"items":{"title":"Items","type":"array","items":{"$ref":"#/components/schemas/POSTItem"}},"skip_duplicates":{"title":"Skip Duplicates","type":"boolean","default":false}}},"POSTTemplate":{"title":"POSTTemplate","required":["name","project_code","attributes"],"type":"object","properties":{"name":{"title":"Name","type":"string"},"project_code":{"title":"Project Code","type":"string"},"attributes":{"title":"Attributes","type":"array","items":{"$ref":"#/components/schemas/POSTTemplateAttributes"}}}},"POSTTemplateAttributes":{"title":"POSTTemplateAttributes","required":["name"],"type":"object","properties":{"name":{"title":"Name","type":"string"},"optional":{"title":"Optional","type":"boolean","default":true},"type":{"title":"Type","type":"string","default":"text"},"options":{"title":"Options","type":"array","items":{"type":"string"}}}},"POSTTemplateResponse":{"title":"POSTTemplateResponse","type":"object","properties":{"code":{"allOf":[{"$ref":"#/components/schemas/EAPIResponseCode"}],"default":200},"error_msg":{"title":"Error Msg","type":"string","default":""},"page":{"title":"Page","type":"integer","default":0},"total":{"title":"Total","type":"integer","default":1},"num_of_pages":{"title":"Num Of Pages","type":"integer","default":1},"result":{"title":"Result","type":"object","default":{},"example":{"id":"85465212-168a-4f0c-a7aa-f3a19795d2ff","name":"template_name","project_code":"project0422","attributes":[{"name":"attribute_1","optional":true,"type":"text"},{"name":"attribute_2","optional":true,"type":"multiple_choice","options":["val1, val2"]}]}}}},"PUTCollectionResponse":{"title":"PUTCollectionResponse","type":"object","properties":{"code":{"allOf":[{"$ref":"#/components/schemas/EAPIResponseCode"}],"default":200},"error_msg":{"title":"Error Msg","type":"string","default":""},"page":{"title":"Page","type":"integer","default":0},"total":{"title":"Total","type":"integer","default":1},"num_of_pages":{"title":"Num Of Pages","type":"integer","default":1},"result":{"title":"Result","type":"object","default":{},"example":{"owner":"admin","container_code":"project123","collections":[{"id":"52c4a134-8550-4acc-9ab9-596548c91c52","name":"collection2"}]}}}},"PUTCollections":{"title":"PUTCollections","required":["owner","container_code","collections"],"type":"object","properties":{"owner":{"title":"Owner","type":"string"},"container_code":{"title":"Container Code","type":"string"},"collections":{"title":"Collections","type":"array","items":{"$ref":"#/components/schemas/Collection"}}}},"PUTItem":{"title":"PUTItem","type":"object","properties":{"id":{"title":"Id","type":"string","format":"uuid"},"parent":{"title":"Parent","type":"string","format":"uuid","default":"","example":"3fa85f64-5717-4562-b3fc-2c963f66afa6"},"parent_path":{"title":"Parent Path","type":"string","default":"","example":"path/to/file"},"container_code":{"title":"Container Code","type":"string"},"container_type":{"title":"Container Type","type":"string"},"type":{"title":"Type","type":"string"},"status":{"$ref":"#/components/schemas/ItemStatus"},"zone":{"title":"Zone","type":"integer"},"name":{"title":"Name","type":"string","example":"file_name.txt"},"size":{"title":"Size","type":"integer"},"owner":{"title":"Owner","type":"string"},"upload_id":{"title":"Upload Id","type":"string"},"location_uri":{"title":"Location Uri","type":"string"},"version":{"title":"Version","type":"string"},"tags":{"title":"Tags","type":"array","items":{"type":"string"}},"system_tags":{"title":"System Tags","type":"array","items":{"type":"string"}},"attribute_template_id":{"title":"Attribute Template Id","type":"string","format":"uuid"},"attributes":{"title":"Attributes","type":"object"},"tfrm_source":{"title":"Tfrm Source","type":"string","format":"uuid"},"tfrm_type":{"$ref":"#/components/schemas/TransformationType"}}},"PUTItemResponse":{"title":"PUTItemResponse","type":"object","properties":{"code":{"allOf":[{"$ref":"#/components/schemas/EAPIResponseCode"}],"default":200},"error_msg":{"title":"Error Msg","type":"string","default":""},"page":{"title":"Page","type":"integer","default":0},"total":{"title":"Total","type":"integer","default":1},"num_of_pages":{"title":"Num Of Pages","type":"integer","default":1},"result":{"title":"Result","type":"object","default":{},"example":{"id":"85465212-168a-4f0c-a7aa-f3a19795d2ff","parent":"28c608ac-1693-4318-a1c4-412caf2cd74a","parent_path":"path/to/file","status":"ACTIVE","type":"file","zone":0,"name":"filename","size":0,"owner":"username","container_code":"project_code","container_type":"project","created_time":"2022-04-13 13:30:10.890347","last_updated_time":"2022-04-13 13:30:10.890347","storage":{"id":"ba623005-8183-419a-972a-e4ce0d539349","location_uri":"https://example.com/item","version":"1.0"},"extended":{"id":"dc763d28-7e74-4db3-a702-fa719aa702c6","extra":{"tags":["tag1","tag2"],"system_tags":["tag1","tag2"],"attributes":{"101778d7-a628-41ea-823b-e4b377f3476c":{"key1":"value1","key2":"value2"}}}}}}}},"PUTItems":{"title":"PUTItems","required":["items"],"type":"object","properties":{"items":{"title":"Items","type":"array","items":{"$ref":"#/components/schemas/PUTItem"}}}},"PUTItemsBequeath":{"title":"PUTItemsBequeath","type":"object","properties":{"attribute_template_id":{"title":"Attribute Template Id","type":"string","format":"uuid"},"attributes":{"title":"Attributes","type":"object"},"system_tags":{"title":"System Tags","type":"array","items":{"type":"string"}}}},"PUTItemsBequeathResponse":{"title":"PUTItemsBequeathResponse","type":"object","properties":{"code":{"allOf":[{"$ref":"#/components/schemas/EAPIResponseCode"}],"default":200},"error_msg":{"title":"Error Msg","type":"string","default":""},"page":{"title":"Page","type":"integer","default":0},"total":{"title":"Total","type":"integer","default":1},"num_of_pages":{"title":"Num Of Pages","type":"integer","default":1},"result":{"title":"Result","type":"object","default":{},"example":{"id":"85465212-168a-4f0c-a7aa-f3a19795d2ff","parent":"28c608ac-1693-4318-a1c4-412caf2cd74a","parent_path":"path/to/file","status":"ACTIVE","type":"file","zone":0,"name":"filename","size":0,"owner":"username","container_code":"project_code","container_type":"project","created_time":"2022-04-13 13:30:10.890347","last_updated_time":"2022-04-13 13:30:10.890347","storage":{"id":"ba623005-8183-419a-972a-e4ce0d539349","location_uri":"https://example.com/item","version":"1.0"},"extended":{"id":"dc763d28-7e74-4db3-a702-fa719aa702c6","extra":{"tags":["tag1","tag2"],"system_tags":["tag1","tag2"],"attributes":{"101778d7-a628-41ea-823b-e4b377f3476c":{"key1":"value1","key2":"value2"}}}}}}}},"PUTTemplate":{"title":"PUTTemplate","required":["name","project_code","attributes"],"type":"object","properties":{"name":{"title":"Name","type":"string"},"project_code":{"title":"Project Code","type":"string"},"attributes":{"title":"Attributes","type":"array","items":{"$ref":"#/components/schemas/POSTTemplateAttributes"}}}},"PUTTemplateResponse":{"title":"PUTTemplateResponse","type":"object","properties":{"code":{"allOf":[{"$ref":"#/components/schemas/EAPIResponseCode"}],"default":200},"error_msg":{"title":"Error Msg","type":"string","default":""},"page":{"title":"Page","type":"integer","default":0},"total":{"title":"Total","type":"integer","default":1},"num_of_pages":{"title":"Num Of Pages","type":"integer","default":1},"result":{"title":"Result","type":"object","default":{},"example":{"id":"85465212-168a-4f0c-a7aa-f3a19795d2ff","name":"template_name","project_code":"project0422","attributes":[{"name":"attribute_1","optional":true,"type":"text"},{"name":"attribute_2","optional":true,"type":"multiple_choice","options":["val1, val2"]}]}}}},"TransformationType":{"title":"TransformationType","enum":["copy_to_zone","archive"],"type":"string","description":"Enum contains every allowed type of lineage transformation."},"ValidationError":{"title":"ValidationError","required":["loc","msg","type"],"type":"object","properties":{"loc":{"title":"Location","type":"array","items":{"anyOf":[{"type":"string"},{"type":"integer"}]}},"msg":{"title":"Message","type":"string"},"type":{"title":"Error Type","type":"string"}}}}}}