Skip to content
Snippets Groups Projects
api.yaml 12 KiB
Newer Older
  • Learn to ignore specific revisions
  • David Diederich's avatar
    David Diederich committed
    1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417
    openapi: "3.0.1"
    info:
      description: "This is a set of APIs that are provided for Domain Data Management Service (DDMS) developers."
      version: "1.0.0"
      title: "DELFI Data Ecosystem Domain Extensions Services"
      termsOfService: "http://osdu.opengroup.org/terms/"
      contact:
        email: "osdu-sre@opengroup.org"
    servers:
      - url: https://api.{environment}.csp.opengroup.org/dataecosystem
        variables:
          environment:
            default: p4d
            enum:
              - evd
              - evt
              - p4d
    
    tags:
      - name: "registration"
        description: "APIs for registration"
        externalDocs:
          description: "Find out more"
          url: "https://test.devportal.apigee.io/solutions/dataecosystem/tutorials"
    
    security:
      - Bearer: []
    
    paths:
      "/registration/v1/ddms":
        post:
          tags:
            - "registration"
          summary: "Add a new DDMS to the Data Ecosystem"
          description: "Create a DDMS registration."
          operationId: "postDMS"
          parameters:
            - $ref: "#/components/parameters/correlation-id"
            - $ref: "#/components/parameters/data-partition-id"
          requestBody:
            content:
              application/json:
                schema:
                  oneOf:
                    - $ref: '#/components/schemas/DMSOpenAPISpec'
                    - $ref: '#/components/schemas/DMSBasicSpec'
                example:
                  name: logDMS
                  description: "This DDMS is used to manage log data."
                  contact:
                    email: "osdu-sre@opengroup.org"
                  servers:
                    - url: "https://logstore/v1"
                      spec: "REST"
                      description: "Global logstore deployment"
                      isMultiDataPartition: true
    
          responses:
            '200':
              description: "Given DDMS has been registered."
              headers:
                "correlation-id":
                  $ref: "#/components/headers/correlation-id"
              content:
                application/json:
                  schema:
                    $ref: '#/components/schemas/DMSId'
            default:
              description: "Unexpected error"
              content:
                application/json:
                  schema:
                    $ref: "#/components/schemas/Error"
    
        get:
          tags:
            - "registration"
          summary: "List DMSs registered in the Data Ecosystem"
          description: "List DMSs registrations."
          operationId: "listDMS"
          parameters:
            - $ref: "#/components/parameters/correlation-id"
            - $ref: "#/components/parameters/data-partition-id"
    
          responses:
            '200':
              description: "List of registered DMSs."
              headers:
                "correlation-id":
                  $ref: "#/components/headers/correlation-id"
              content:
                application/json:
                  schema:
                    $ref: '#/components/schemas/DMSList'
            default:
              description: "Unexpected error"
              content:
                application/json:
                  schema:
                    $ref: "#/components/schemas/Error"
    
      "/registration/v1/ddms/{id}":
        get:
          tags:
            - "registration"
          summary: "Get DMSs registered in the Data Ecosystem"
          description: "Get DDMS registration."
          operationId: "getDMS"
          parameters:
            - $ref: "#/components/parameters/correlation-id"
            - $ref: "#/components/parameters/data-partition-id"
            - name: id
              in: path
              required: true
              description: The id of the DDMS to retrieve
              schema:
                type: string
          responses:
            '200':
              description: "Registered DDMS."
              headers:
                "correlation-id":
                  $ref: "#/components/headers/correlation-id"
              content:
                application/json:
                  schema:
                    anyOf:
                      - $ref: '#/components/schemas/DMSOpenAPISpec'
                      - $ref: '#/components/schemas/DMSBasicSpec'
            default:
              description: "Unexpected error"
              content:
                application/json:
                  schema:
                    $ref: "#/components/schemas/Error"
    
      "/registration/v1/types":
        get:
          tags:
            - "registration"
          summary: "List types registered in the Data Ecosystem"
          description: "List types registrations."
          operationId: "listTypes"
          parameters:
            - $ref: "#/components/parameters/correlation-id"
            - $ref: "#/components/parameters/data-partition-id"
            - name: dmsId
              in: query
              description: The id of the DDMS to filter the types on
              schema:
                type: string
          responses:
            '200':
              description: "List of registered types."
              headers:
                "correlation-id":
                  $ref: "#/components/headers/correlation-id"
              content:
                application/json:
                  schema:
                    $ref: '#/components/schemas/TypeList'
            default:
              description: "Unexpected error"
              content:
                application/json:
                  schema:
                    $ref: "#/components/schemas/Error"
    
      "/registration/v1/types/{id}":
        get:
          tags:
            - "registration"
          summary: "Get type registered in the Data Ecosystem"
          description: "Get type registration."
          operationId: "getType"
          parameters:
            - $ref: "#/components/parameters/correlation-id"
            - $ref: "#/components/parameters/data-partition-id"
            - name: id
              in: path
              required: true
              description: The id of the type to retrieve
              schema:
                type: string
          responses:
            '200':
              description: "Registered type."
              headers:
                "correlation-id":
                  $ref: "#/components/headers/correlation-id"
              content:
                application/json:
                  schema:
                    $ref: '#/components/schemas/Type'
            default:
              description: "Unexpected error"
              content:
                application/json:
                  schema:
                    $ref: "#/components/schemas/Error"
    
    components:
      headers:
        correlation-id:
          description: "Shared DELFI correlation id. Same as input one if provided, a new one otherwise."
          required: true
          schema:
            type: string
          examples:
            basic:
              value: "123456789"
      parameters:
        correlation-id:
          name: "correlation-id"
          in: "header"
          description: "Shared DELFI correlation id"
          schema:
            type: string
          examples:
            basic:
              value: "123456789"
        data-partition-id:
          name: "data-partition-id"
          in: "header"
          description: "DELFI data partition id"
          required: true
          schema:
            type: string
          examples:
            osdu:
              value: "opendes"
            customer:
              value: "my-NAM"
        Osdu-Data-Legal:
          name: "Osdu-Data-Legal"
          in: "header"
          description: "Stringified json of legal object associated with this wellbore"
          schema:
            type: string
          examples:
            basic:
              value: "{\"tag\":\"osdu-default\"}"
              summary: "Basic legal information"
            withAncestry: # Distinct name
              value: "{\"tag\":\"osdu-default\",\"ancestry\":{}}"
              summary: "Legal information containing ancestry applicable to derived data"
        Osdu-Data-Acl:
          name: "Osdu-Data-Acl"
          in: "header"
          schema:
            description: "Stringified json of access control list associated with this wellbore"
            type: string
          examples:
            basic:
              value: "[{\"role\":\"viewer\", \"members\":[\"data.default.viewers@my-company-nam.osdu.opengroup.org\"]}]"
              summary: "Basic legal information"
    
    
      schemas:
        DMSOpenAPISpec:
          description: "OpenAPI specification for a DDMS. Root level annotation with x-osdu-data-ddms-name and x-osdu-data-isMultiDataPartition is required. x-osdu-data-ddms-name must match the name parameter."
          title: "DMSOpenAPISpec"
          type: object
          properties:
            id:
              type: string
              example: "logDMS"
            name:
              type: string
              example: "logDMS"
            openAPI:
              type: object
              example:
                {}
        DMSBasicSpec:
          description: "Basic registration details for a DDMS."
          title: "DMSBasicSpec"
          type: object
          properties:
            id:
              type: string
              example: "logDMS"
            name:
              type: string
              example: "logDMS"
            description:
              type: string
              example: "This DDMS is used to manage log data."
            contact:
              type: object
              properties:
                email:
                  type: string
                  example: "osdu-sre@opengroup.org"
            servers:
              type: array
              items:
                properties:
                  url:
                    type: string
                    description: "A URL to the target host."
                    example: "https://logstore/v1"
                  type:
                    type: string
                    description: "Type of the endpoints server is providing."
                    enum:
                      - REST
                      - gRPC
                    example: REST
                  description:
                    type: string
                    description: "An optional string describing the host designated by the URL."
                    example: "Global logstore endpoint"
                  isMultiDataPartition:
                    type: boolean
                    description: "Indicating if DDMS is single or multitenant. Set to true if it is multitenant."
                    example: false
                  apiKey:
                    type: string
                    description: "An optional apiKey for the DDMS."
                    example: "12345678"
                required:
                  - url
                  - type
                  - isMultiDataPartition
        DMSId:
          description: "Id of the registered DDMS"
          properties:
            id:
              type: string
              example: "logDMS1"
        DMSList:
          type: array
          items:
            anyOf:
              - $ref: "#/components/schemas/DMSOpenAPISpec"
              - $ref: "#/components/schemas/DMSBasicSpec"
        Type:
          description: "OpenAPI specification for a DDMS. Root level annotation with x-osdu-data-ddms-name is required and it must match name parameter."
          title: "DMSOpenAPISpec"
          type: object
          properties:
            id:
              type: string
              example: "logDMS:log"
            name:
              type: string
              example: "log"
            server:
              type: string
              example: "https://logstore/v1"
            operations:
              type: object
              properties:
                get:
                  type: object
                  properties:
                    path:
                      type: string
                      example: "/logs/{id}"
                    parameters:
                      type: array
                      items:
                        $ref: "#/components/schemas/Parameter"
                      example:
                        - name: "data-partition-id"
                          in: "header"
                        - name: "id"
                          in: "path"
    
    
        TypeList:
          type: array
          items:
            $ref: "#/components/schemas/Type"
        Parameter:
          required:
            - name
            - in
          properties:
            name:
              type: string
              example: "id"
            in:
              type: string
              enum:
                - header
                - path
                - query
              example: "path"
        Error:
          required:
            - code
            - message
          properties:
            code:
              type: integer
              format: int32
            message:
              type: string
      securitySchemes:
        # This section configures basic authentication with an API key.
        Bearer:
          type: apiKey
          name: "Authorization"
          in: "header"
        googleIdToken:
          description: "This API uses OAuth2 Google Id Token implicit grant flow."
          type: oauth2
          flows:
            implicit:
              authorizationUrl: ""
              x-google-issuer: "https://accounts.google.com"
              x-google-jwks_uri: "https://www.googleapis.com/oauth2/v3/certs"
              x-google-audiences: "245464679631-ktfdfpl147m1mjpbutl00b3cmffissgq.apps.googleusercontent.com"
              scopes: {}