|
| 1 | +========== |
| 2 | +Remote metadata reference |
| 3 | +========== |
| 4 | + |
| 5 | +Projects metadata |
| 6 | +_________________ |
| 7 | +.. _ref_metadata: |
| 8 | +Project metadata example: |
| 9 | + |
| 10 | +.. code-block:: python |
| 11 | +
|
| 12 | + { |
| 13 | + "name": "Example Project test", |
| 14 | + "description": "test vector", |
| 15 | + "creator_id": "admin@superannotate.com", |
| 16 | + "updatedAt": "2020-08-31T05:43:43.118Z", |
| 17 | + "createdAt": "2020-08-31T05:43:43.118Z" |
| 18 | + "type": "Vector", |
| 19 | + "attachment_name": None, |
| 20 | + "attachment_path": None, |
| 21 | + "entropy_status": 1, |
| 22 | + "status": "NotStarted", |
| 23 | + "item_count": 123, |
| 24 | + "...": "..." |
| 25 | + } |
| 26 | +
|
| 27 | +
|
| 28 | +---------- |
| 29 | + |
| 30 | +Setting metadata |
| 31 | +_________________ |
| 32 | + |
| 33 | +Setting metadata example: |
| 34 | + |
| 35 | +.. code-block:: python |
| 36 | +
|
| 37 | + { |
| 38 | + "attribute": "FrameRate", |
| 39 | + "value": 3 |
| 40 | + } |
| 41 | +
|
| 42 | +
|
| 43 | +---------- |
| 44 | + |
| 45 | +Export metadata |
| 46 | +_______________ |
| 47 | + |
| 48 | +Export metadata example: |
| 49 | + |
| 50 | +.. code-block:: python |
| 51 | +
|
| 52 | + { |
| 53 | + "name": "Aug 17 2020 15:44 First Name.zip", |
| 54 | + "user_id": "user@gmail.com", |
| 55 | + "status": 2, |
| 56 | + "createdAt": "2020-08-17T11:44:26.000Z", |
| 57 | + "...": "..." |
| 58 | + } |
| 59 | +
|
| 60 | +
|
| 61 | +---------- |
| 62 | + |
| 63 | + |
| 64 | +Integration metadata |
| 65 | +______________________ |
| 66 | + |
| 67 | +Integration metadata example: |
| 68 | + |
| 69 | +.. code-block:: python |
| 70 | +
|
| 71 | + { |
| 72 | + "name": "My S3 Bucket", |
| 73 | + "type": "aws", |
| 74 | + "root": "test-openseadragon-1212" |
| 75 | + } |
| 76 | +
|
| 77 | +
|
| 78 | +---------- |
| 79 | + |
| 80 | + |
| 81 | +Item metadata |
| 82 | +_______________ |
| 83 | + |
| 84 | +Item metadata example: |
| 85 | + |
| 86 | +.. code-block:: python |
| 87 | +
|
| 88 | + { |
| 89 | + "name": "example.jpeg", |
| 90 | + "path": "project/folder_1/meow.jpeg", |
| 91 | + "url": "https://sa-public-files.s3.../text_file_example_1.jpeg", |
| 92 | + "annotation_status": "NotStarted", |
| 93 | + "annotator_name": None, |
| 94 | + "qa_name": None, |
| 95 | + "entropy_value": None, |
| 96 | + "createdAt": "2022-02-15T20:46:44.000Z", |
| 97 | + "updatedAt": "2022-02-15T20:46:44.000Z" |
| 98 | + } |
| 99 | +
|
| 100 | +---------- |
| 101 | + |
| 102 | + |
| 103 | +Image metadata |
| 104 | +_______________ |
| 105 | + |
| 106 | + |
| 107 | +Image metadata example: |
| 108 | + |
| 109 | +.. code-block:: python |
| 110 | +
|
| 111 | + { |
| 112 | + "name": "000000000001.jpg", |
| 113 | + "annotation_status": "Completed", |
| 114 | + "prediction_status": "NotStarted", |
| 115 | + "segmentation_status": "NotStarted", |
| 116 | + "annotator_id": None, |
| 117 | + "annotator_name": None, |
| 118 | + "qa_id": None, |
| 119 | + "qa_name": None, |
| 120 | + "entropy_value": None, |
| 121 | + "approval_status": None, |
| 122 | + "createdAt": "2020-08-18T07:30:06.000Z", |
| 123 | + "updatedAt": "2020-08-18T07:30:06.000Z" |
| 124 | + "is_pinned": 0, |
| 125 | + "...": "...", |
| 126 | + } |
| 127 | +
|
| 128 | +
|
| 129 | +---------- |
| 130 | + |
| 131 | +Priority score |
| 132 | +_______________ |
| 133 | + |
| 134 | + |
| 135 | +Priority score example: |
| 136 | + |
| 137 | +.. code-block:: python |
| 138 | +
|
| 139 | + { |
| 140 | + "name" : "image1.png", |
| 141 | + "priority": 0.567 |
| 142 | + } |
| 143 | +
|
| 144 | +
|
| 145 | +---------- |
| 146 | + |
| 147 | +Attachment |
| 148 | +_______________ |
| 149 | + |
| 150 | + |
| 151 | +Attachment example: |
| 152 | + |
| 153 | +.. code-block:: python |
| 154 | +
|
| 155 | + { |
| 156 | + "url": "https://sa-public-files.s3.../text_file_example_1.jpeg", |
| 157 | + "name": "example.jpeg" |
| 158 | + } |
| 159 | +
|
| 160 | +
|
| 161 | +---------- |
| 162 | + |
| 163 | +.. _ref_class: |
| 164 | + |
| 165 | +Annotation class metadata |
| 166 | +_________________________ |
| 167 | + |
| 168 | + |
| 169 | +Annotation class metadata example: |
| 170 | + |
| 171 | +.. code-block:: python |
| 172 | +
|
| 173 | + { |
| 174 | + "id": 4444, |
| 175 | + "name": "Human", |
| 176 | + "color": "#e4542b", |
| 177 | + "attribute_groups": [ |
| 178 | + { |
| 179 | + "name": "tall", |
| 180 | + "attributes": [ |
| 181 | + { |
| 182 | + "name": "yes" |
| 183 | + }, |
| 184 | + { |
| 185 | + "name": "no" |
| 186 | + } |
| 187 | + ] |
| 188 | + }, |
| 189 | + { |
| 190 | + "name": "age", |
| 191 | + "attributes": [ |
| 192 | + { |
| 193 | + "name": "young" |
| 194 | + }, |
| 195 | + { |
| 196 | + "name": "old" |
| 197 | + } |
| 198 | + ] |
| 199 | + } |
| 200 | + ], |
| 201 | +
|
| 202 | + "...": "..." |
| 203 | + } |
| 204 | +
|
| 205 | +
|
| 206 | +
|
| 207 | +---------- |
| 208 | + |
| 209 | +Team contributor metadata |
| 210 | +_________________________ |
| 211 | + |
| 212 | +Team contributor metadata example: |
| 213 | + |
| 214 | +.. code-block:: python |
| 215 | +
|
| 216 | + { |
| 217 | + "id": "admin@superannotate.com", |
| 218 | + "first_name": "First Name", |
| 219 | + "last_name": "Last Name", |
| 220 | + "email": "admin@superannotate.com", |
| 221 | + "user_role": 6 |
| 222 | + "...": "...", |
| 223 | + } |
| 224 | +
|
0 commit comments