SewerAI V1 API

The v1 API from SewerAI — 21 operation(s) for v1.

Business capability
Infrastructure Asset Management BC-5070

Operations 53

GET /v1/assets/ V1 assets list #
POST /v1/assets/ V1 assets create #
GET /v1/assets/{sid}/ V1 assets read #
PUT /v1/assets/{sid}/ V1 assets update #
PATCH /v1/assets/{sid}/ V1 assets partial update #
DELETE /v1/assets/{sid}/ V1 assets delete #
GET /v1/exports/ V1 exports list #
POST /v1/exports/ V1 exports create #
GET /v1/exports/{sid}/ V1 exports read #
PUT /v1/exports/{sid}/ V1 exports update #
PATCH /v1/exports/{sid}/ V1 exports partial update #
DELETE /v1/exports/{sid}/ V1 exports delete #
GET /v1/inspections/ V1 inspections list #
POST /v1/inspections/ V1 inspections create #
POST /v1/inspections/AutoCode/ V1 inspections auto code #
GET /v1/inspections/{inspection_sid}/observations/ V1 inspections observations list #
POST /v1/inspections/{inspection_sid}/observations/ V1 inspections observations create #
GET /v1/inspections/{inspection_sid}/observations/{sid}/ V1 inspections observations read #
PUT /v1/inspections/{inspection_sid}/observations/{sid}/ V1 inspections observations update #
PATCH /v1/inspections/{inspection_sid}/observations/{sid}/ V1 inspections observations partial update #
DELETE /v1/inspections/{inspection_sid}/observations/{sid}/ V1 inspections observations delete #
GET /v1/inspections/{sid}/ V1 inspections read #
PUT /v1/inspections/{sid}/ V1 inspections update #
PATCH /v1/inspections/{sid}/ V1 inspections partial update #
DELETE /v1/inspections/{sid}/ V1 inspections delete #
GET /v1/observations/ V1 observations list #
GET /v1/observations/{sid}/ V1 observations read #
GET /v1/organizations/ V1 organizations list #
POST /v1/organizations/ V1 organizations create #
GET /v1/organizations/{sid}/ V1 organizations read #
PUT /v1/organizations/{sid}/ V1 organizations update #
PATCH /v1/organizations/{sid}/ V1 organizations partial update #
DELETE /v1/organizations/{sid}/ V1 organizations delete #
GET /v1/projects/ V1 projects list #
POST /v1/projects/ V1 projects create #
GET /v1/projects/{sid}/ V1 projects read #
PUT /v1/projects/{sid}/ V1 projects update #
PATCH /v1/projects/{sid}/ V1 projects partial update #
DELETE /v1/projects/{sid}/ V1 projects delete #
GET /v1/users/ V1 users list #
POST /v1/users/ V1 users create #
GET /v1/users/{sid}/ V1 users read #
PUT /v1/users/{sid}/ V1 users update #
PATCH /v1/users/{sid}/ V1 users partial update #
DELETE /v1/users/{sid}/ V1 users delete #
GET /v1/videos/ V1 videos list #
POST /v1/videos/ V1 videos create #
GET /v1/videos/{sid}/ V1 videos read #
PUT /v1/videos/{sid}/ V1 videos update #
PATCH /v1/videos/{sid}/ V1 videos partial update #
DELETE /v1/videos/{sid}/ V1 videos delete #
POST /v1/videos/{sid}/change-inspection/ V1 videos change inspection #
GET /v1/videos/{sid}/url/ V1 videos url #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/sewerai-v1-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

sewerai-v1-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Snippets V1 API
  description: Test description
  termsOfService: https://www.google.com/policies/terms/
  contact:
    email: contact@snippets.local
  license:
    name: BSD License
  version: v1
servers:
- url: https://574ea6n6tdopt2qigvs3hjzoha0nhhvj.lambda-url.us-west-2.on.aws/
security:
- Basic: []
tags:
- name: v1
paths:
  /v1/assets/:
    parameters: []
    get:
      operationId: v1_assets_list
      description: Asset endpoint.
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AssetList'
      tags:
      - v1
      summary: V1 assets list
      x-summary-source: derived
    post:
      operationId: v1_assets_create
      description: Asset endpoint.
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MainlineAssetWrite'
      tags:
      - v1
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/MainlineAssetWrite'
        required: true
      summary: V1 assets create
      x-summary-source: derived
  /v1/assets/{sid}/:
    parameters:
    - name: sid
      in: path
      required: true
      schema:
        type: string
        format: uuid
    get:
      operationId: v1_assets_read
      description: Asset endpoint.
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MainlineAssetRead'
      tags:
      - v1
      summary: V1 assets read
      x-summary-source: derived
    put:
      operationId: v1_assets_update
      description: Asset endpoint.
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MainlineAssetWrite'
      tags:
      - v1
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/MainlineAssetWrite'
        required: true
      summary: V1 assets update
      x-summary-source: derived
    patch:
      operationId: v1_assets_partial_update
      description: Asset endpoint.
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MainlineAssetWrite'
      tags:
      - v1
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/MainlineAssetWrite'
        required: true
      summary: V1 assets partial update
      x-summary-source: derived
    delete:
      operationId: v1_assets_delete
      description: Asset endpoint.
      responses:
        '204':
          description: ''
      tags:
      - v1
      summary: V1 assets delete
      x-summary-source: derived
  /v1/exports/:
    parameters: []
    get:
      operationId: v1_exports_list
      description: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ExportRead'
      tags:
      - v1
      summary: V1 exports list
      x-summary-source: derived
    post:
      operationId: v1_exports_create
      description: ''
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ExportWrite'
      tags:
      - v1
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ExportWrite'
        required: true
      summary: V1 exports create
      x-summary-source: derived
  /v1/exports/{sid}/:
    parameters:
    - name: sid
      in: path
      required: true
      schema:
        type: string
    get:
      operationId: v1_exports_read
      description: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ExportRead'
      tags:
      - v1
      summary: V1 exports read
      x-summary-source: derived
    put:
      operationId: v1_exports_update
      description: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ExportWrite'
      tags:
      - v1
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ExportWrite'
        required: true
      summary: V1 exports update
      x-summary-source: derived
    patch:
      operationId: v1_exports_partial_update
      description: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ExportWrite'
      tags:
      - v1
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ExportWrite'
        required: true
      summary: V1 exports partial update
      x-summary-source: derived
    delete:
      operationId: v1_exports_delete
      description: ''
      responses:
        '204':
          description: ''
      tags:
      - v1
      summary: V1 exports delete
      x-summary-source: derived
  /v1/inspections/:
    parameters: []
    get:
      operationId: v1_inspections_list
      description: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/InspectionList'
      tags:
      - v1
      summary: V1 inspections list
      x-summary-source: derived
    post:
      operationId: v1_inspections_create
      description: ''
      responses:
        '201':
          description: ''
      tags:
      - v1
      summary: V1 inspections create
      x-summary-source: derived
  /v1/inspections/AutoCode/:
    parameters: []
    post:
      operationId: v1_inspections_AutoCode
      description: ''
      responses:
        '201':
          description: ''
      tags:
      - v1
      summary: V1 inspections auto code
      x-summary-source: derived
  /v1/inspections/{inspection_sid}/observations/:
    parameters:
    - name: inspection_sid
      in: path
      required: true
      schema:
        type: string
    get:
      operationId: v1_inspections_observations_list
      description: Observations endpoint.
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ObservationRead'
      tags:
      - v1
      summary: V1 inspections observations list
      x-summary-source: derived
    post:
      operationId: v1_inspections_observations_create
      description: Observations endpoint.
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ObservationWrite'
      tags:
      - v1
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ObservationWrite'
        required: true
      summary: V1 inspections observations create
      x-summary-source: derived
  /v1/inspections/{inspection_sid}/observations/{sid}/:
    parameters:
    - name: inspection_sid
      in: path
      required: true
      schema:
        type: string
    - name: sid
      in: path
      required: true
      schema:
        type: string
        format: uuid
    get:
      operationId: v1_inspections_observations_read
      description: Observations endpoint.
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ObservationRead'
      tags:
      - v1
      summary: V1 inspections observations read
      x-summary-source: derived
    put:
      operationId: v1_inspections_observations_update
      description: Observations endpoint.
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ObservationWrite'
      tags:
      - v1
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ObservationWrite'
        required: true
      summary: V1 inspections observations update
      x-summary-source: derived
    patch:
      operationId: v1_inspections_observations_partial_update
      description: Observations endpoint.
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ObservationWrite'
      tags:
      - v1
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ObservationWrite'
        required: true
      summary: V1 inspections observations partial update
      x-summary-source: derived
    delete:
      operationId: v1_inspections_observations_delete
      description: Observations endpoint.
      responses:
        '204':
          description: ''
      tags:
      - v1
      summary: V1 inspections observations delete
      x-summary-source: derived
  /v1/inspections/{sid}/:
    parameters:
    - name: sid
      in: path
      required: true
      schema:
        type: string
        format: uuid
    get:
      operationId: v1_inspections_read
      description: ''
      responses:
        '200':
          description: ''
      tags:
      - v1
      summary: V1 inspections read
      x-summary-source: derived
    put:
      operationId: v1_inspections_update
      description: ''
      responses:
        '200':
          description: ''
      tags:
      - v1
      summary: V1 inspections update
      x-summary-source: derived
    patch:
      operationId: v1_inspections_partial_update
      description: ''
      responses:
        '200':
          description: ''
      tags:
      - v1
      summary: V1 inspections partial update
      x-summary-source: derived
    delete:
      operationId: v1_inspections_delete
      description: ''
      responses:
        '204':
          description: ''
      tags:
      - v1
      summary: V1 inspections delete
      x-summary-source: derived
  /v1/observations/:
    parameters: []
    get:
      operationId: v1_observations_list
      description: Observations endpoint.
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ObservationRead'
      tags:
      - v1
      summary: V1 observations list
      x-summary-source: derived
  /v1/observations/{sid}/:
    parameters:
    - name: sid
      in: path
      required: true
      schema:
        type: string
        format: uuid
    get:
      operationId: v1_observations_read
      description: Observations endpoint.
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ObservationRead'
      tags:
      - v1
      summary: V1 observations read
      x-summary-source: derived
  /v1/organizations/:
    parameters: []
    get:
      operationId: v1_organizations_list
      description: Organization endpoint.
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/OrganizationRead'
      tags:
      - v1
      summary: V1 organizations list
      x-summary-source: derived
    post:
      operationId: v1_organizations_create
      description: Organization endpoint.
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrganizationWrite'
      tags:
      - v1
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/OrganizationWrite'
        required: true
      summary: V1 organizations create
      x-summary-source: derived
  /v1/organizations/{sid}/:
    parameters:
    - name: sid
      in: path
      required: true
      schema:
        type: string
        format: uuid
    get:
      operationId: v1_organizations_read
      description: Organization endpoint.
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrganizationRead'
      tags:
      - v1
      summary: V1 organizations read
      x-summary-source: derived
    put:
      operationId: v1_organizations_update
      description: Organization endpoint.
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrganizationWrite'
      tags:
      - v1
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/OrganizationWrite'
        required: true
      summary: V1 organizations update
      x-summary-source: derived
    patch:
      operationId: v1_organizations_partial_update
      description: Organization endpoint.
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrganizationWrite'
      tags:
      - v1
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/OrganizationWrite'
        required: true
      summary: V1 organizations partial update
      x-summary-source: derived
    delete:
      operationId: v1_organizations_delete
      description: Organization endpoint.
      responses:
        '204':
          description: ''
      tags:
      - v1
      summary: V1 organizations delete
      x-summary-source: derived
  /v1/projects/:
    parameters: []
    get:
      operationId: v1_projects_list
      description: Projects endpoint.
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ProjectRead'
      tags:
      - v1
      summary: V1 projects list
      x-summary-source: derived
    post:
      operationId: v1_projects_create
      description: Projects endpoint.
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProjectWrite'
      tags:
      - v1
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ProjectWrite'
        required: true
      summary: V1 projects create
      x-summary-source: derived
  /v1/projects/{sid}/:
    parameters:
    - name: sid
      in: path
      required: true
      schema:
        type: string
        format: uuid
    get:
      operationId: v1_projects_read
      description: Projects endpoint.
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProjectRead'
      tags:
      - v1
      summary: V1 projects read
      x-summary-source: derived
    put:
      operationId: v1_projects_update
      description: Projects endpoint.
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProjectWrite'
      tags:
      - v1
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ProjectWrite'
        required: true
      summary: V1 projects update
      x-summary-source: derived
    patch:
      operationId: v1_projects_partial_update
      description: Projects endpoint.
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProjectWrite'
      tags:
      - v1
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ProjectWrite'
        required: true
      summary: V1 projects partial update
      x-summary-source: derived
    delete:
      operationId: v1_projects_delete
      description: Projects endpoint.
      responses:
        '204':
          description: ''
      tags:
      - v1
      summary: V1 projects delete
      x-summary-source: derived
  /v1/users/:
    parameters: []
    get:
      operationId: v1_users_list
      description: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/UserList'
      tags:
      - v1
      summary: V1 users list
      x-summary-source: derived
    post:
      operationId: v1_users_create
      description: ''
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UserRead'
      tags:
      - v1
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UserRead'
        required: true
      summary: V1 users create
      x-summary-source: derived
  /v1/users/{sid}/:
    parameters:
    - name: sid
      in: path
      required: true
      schema:
        type: string
        format: uuid
    get:
      operationId: v1_users_read
      description: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UserRead'
      tags:
      - v1
      summary: V1 users read
      x-summary-source: derived
    put:
      operationId: v1_users_update
      description: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UserRead'
      tags:
      - v1
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UserRead'
        required: true
      summary: V1 users update
      x-summary-source: derived
    patch:
      operationId: v1_users_partial_update
      description: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UserRead'
      tags:
      - v1
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UserRead'
        required: true
      summary: V1 users partial update
      x-summary-source: derived
    delete:
      operationId: v1_users_delete
      description: ''
      responses:
        '204':
          description: ''
      tags:
      - v1
      summary: V1 users delete
      x-summary-source: derived
  /v1/videos/:
    parameters: []
    get:
      operationId: v1_videos_list
      description: Video endpoint.
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/VideoRead'
      tags:
      - v1
      summary: V1 videos list
      x-summary-source: derived
    post:
      operationId: v1_videos_create
      description: Video endpoint.
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VideoWrite'
      tags:
      - v1
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/VideoWrite'
        required: true
      summary: V1 videos create
      x-summary-source: derived
  /v1/videos/{sid}/:
    parameters:
    - name: sid
      in: path
      required: true
      schema:
        type: string
        format: uuid
    get:
      operationId: v1_videos_read
      description: Video endpoint.
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VideoRead'
      tags:
      - v1
      summary: V1 videos read
      x-summary-source: derived
    put:
      operationId: v1_videos_update
      description: Video endpoint.
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VideoWrite'
      tags:
      - v1
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/VideoWrite'
        required: true
      summary: V1 videos update
      x-summary-source: derived
    patch:
      operationId: v1_videos_partial_update
      description: Video endpoint.
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VideoWrite'
      tags:
      - v1
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/VideoWrite'
        required: true
      summary: V1 videos partial update
      x-summary-source: derived
    delete:
      operationId: v1_videos_delete
      description: Video endpoint.
      responses:
        '204':
          description: ''
      tags:
      - v1
      summary: V1 videos delete
      x-summary-source: derived
  /v1/videos/{sid}/change-inspection/:
    parameters:
    - name: sid
      in: path
      required: true
      schema:
        type: string
        format: uuid
    post:
      operationId: v1_videos_change_inspection
      description: Video endpoint.
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VideoWrite'
      tags:
      - v1
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/VideoWrite'
        required: true
      summary: V1 videos change inspection
      x-summary-source: derived
  /v1/videos/{sid}/url/:
    parameters:
    - name: sid
      in: path
      required: true
      schema:
        type: string
        format: uuid
    get:
      operationId: v1_videos_url
      description: Video endpoint.
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VideoWrite'
      tags:
      - v1
      summary: V1 videos url
      x-summary-source: derived
components:
  schemas:
    InspectionList:
      required:
      - key
      - inspection_datetime
      - inspection_type
      type: object
      properties:
        sid:
          title: Sid
          type: string
          format: uuid
          readOnly: true
        url:
          title: Url
          type: string
          format: uri
          readOnly: true
        key:
          title: Key
          description: Enables customers to uniquely identify inspections using their own method
          type: string
          maxLength: 128
          minLength: 1
        asset:
          title: Asset
          type: string
          format: uri
          readOnly: true
        owner:
          title: Owner
          type: string
          format: uri
          readOnly: true
        client:
          title: Client
          type: string
          format: uri
          readOnly: true
        reason:
          title: Reason
          type: string
          enum:
          - operations-support
          - infiltation-and-inflow
          - new-install
          - post-renewal
          - pre-renewal
          - routine
          - pre-construction
          - resurvey
          - sewer-system-evaluation-survey
          - pre-existing-media
          - other
        city:
          title: City
          type: string
          minLength: 1
        city_area:
          title: City area
          type: string
          minLength: 1
        country_area:
          title: Country area
          type: string
          minLength: 1
        country_code:
          title: Country code
          type: string
          minLength: 1
        postal_code:
          title: Postal code
          type: string
          minLength: 1
        sorting_code:
          title: Sorting code
          type: string
          minLength: 1
        street_address:
          title: Street address
          type: string
          minLength: 1
        inspection_datetime:
          title: Inspection datetime
          type: string
          format: date-time
        inspection_type:
          title: Inspection type
          type: string
          enum:
          - mainline
          - lateral
          - maintenance-hole
        autocode_complete:
          title: Autocoded
          type: boolean
        autocode_complete_date:
          title: Autocode complete date
          type:
          - string
          - 'null'
          format: date-time
          readOnly: true
        distance:
          title: Distance
          type: object
        metadata:
          title: Metadata
          description: Customer defined Inspection metadata.
          type: object
        created:
          title: Created
          type: string
          format: date-time
          readOnly: true
        updated:
          title: Updated
          type: string
          format: date-time
          readOnly: true
        projects:
          title: Projects
          type: string
          format: uuid
        video:
          title: Video
          type: string
          format: uri
          readOnly: true
        validate:
          title: Validate
          description: 'Should this inspection be validated (default: True)'
          type: boolean
        created_by:
          title: Created by
          type: string
          format: uri
          readOnly: true
        updated_by:
          title: Updated by
          type: string
          format: uri
          readOnly: true
        deleted:
          title: Deleted
          type: string
          format: date-time
          readOnly: true
        deleted_by:
          title: Deleted by
          type: string
          format: uri
          readOnly: true
        account:
          title: Account
          type: string
          format: uri
          readOnly: true
    ProjectWrite:
      required:
      - name
      type: object
      properties:
        url:
          title: Url
          type: string
          format: uri
          readOnly: true
        sid:
          title: Sid
          type: string
          format: uuid
          readOnly: true
        account:
          title: Account
          type: string
          format: uuid
        name:
          title: Name
          type: string
          maxLength: 128
          minLength: 1
        description:
          title: Description
          type:
          - string
          - 'null'
          maxLength: 1024
        client:
          title: Client
          type:
          - string
          - 'null'
          format: uuid
        date_due:
          title: Date due
          type:
          - string
          - 'null'
          format: date-time
        date_started:
          title: Date started
          type:
          - string
          - 'null'
          format: date-time
        date_finished:
          title: Date finished
          type:
          - string
          - 'null'
          format: date-time
        active:
          title: Active
          type: boolean
        created:
          title: Created
          type: string
          format: date-time
          readOnly: true
        updated:
          title: Updated
          type: string
          format: date-time
          readOnly: true
        created_by:
          title: Created by
          type: string
          format: uri
          readOnly: true
        updated_by:
          title: Updated by
          type: string
          format: uri
          readOnly: true
        deleted:
          title: Deleted
          type: string
          format: date-time
          readOnly: true
        deleted_by:
          title: Deleted by
          type: string
          format: uri
          readOnly: true
    ExportWrite:
      type: object
      properties:
        name:
          title: Name
          type:
          - string
          - 'null'
          maxLength: 128
        sid:
          title: Sid
          type: string
          format: uuid
          readOnly: true
    AssetList:
      required:
      - name
      - kind
      - city
      type: object
      properties:
        url:
          title: Url
          type: string
          format: uri
          readOnly: true
        sid:
          title: Sid
          type: string
          format: uuid
          readOnly: true
        name:
          title: Name
          type: string
          maxLength: 1024
          minLength: 1
        key:
          title: Key
          type:
          - string
          - 'null'
          maxLength: 128
          minLength: 1
        owner:
          title: Owner
          type: string
          format: uri
          readOnly: true
        kind:
          title: Kind
          type: string
          enum:
          - mainline
          - lateral
          - maintenance-hole
        geojson:
          title: Geojson
          type: object
        city:
          title: City
          type: string
          minLength: 1
        city_area:
          title: City area
          type: string
          minLength: 1
        country_area:
          title: Country area
          type: string
          minLength: 1
        country_code:
          title: Country code
          type: string
          minLength: 1
        postal_code:
          title: Postal code
          type: string
          minLength: 1
        sorting_code:
          title: Sorting code
          type: string
          minLength: 1
        street_address:
          title: Street address
          type: string
          minLength: 1
        created:
          title: Created
          type: string
          format: date-time
          readOnly: true
        created_by:
          title: Created by
          type: string
          format: uri
          readOnly: true
        updated:
          title: Updated
          type: string
          format: date-time
          readOnly: true
        updated_by:
          title: Updated by
          type: string
          format: uri
          readOnly: true
        deleted:
          title: Deleted
          type: string
          format: date-time
          readOnly: true
        deleted_by:
          title: Deleted by
          type: string
          format: uri
          readOnly: true
        account:
          title: Account
          type: string
          format: uri
          readOnly: true
    ExportRead:
      type: object
      properties:
        url:
          title: Url
          type: string
          format: uri
          readOnly: true
        

# --- truncated at 32 KB (55 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/sewerai/refs/heads/main/openapi/sewerai-v1-api-openapi.yml