openapi: 3.1.0
info:
  title: TransportObject
  version: 2.0.0
  description: Schema definition for the TransportObject entity in the Beckn Mobility
  license:
    name: CC-BY-NC-SA 4.0 International
    url: https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en
  contact:
    name: Beckn Labs
    url: https://beckn.io
components:
  schemas:
    TransportObject:
      x-iri: https://schema.nfh.global/TransportObject/v2.0
      type: object
      title: TransportObject
      description: A generic transport entity in the OSLO mobility ontology representing
        any object involved in transport operations.
      x-tags:
        - mobility
        - oslo-mobility
        - ride-hailing
      properties:
        objectType:
          description: Type of transport object (e.g. VEHICLE, INFRASTRUCTURE, ASSET)
          type: string
        attributes:
          description: Additional extensible attributes for this transport object
          type: string
        id:
          description: Unique identifier for the item
          type: string
        descriptor:
          description: Human-readable description of the item
          $ref: https://schema.nfh.global/Descriptor/v2.0/attributes.yaml#/components/schemas/Descriptor
        categoryId:
          description: Category code classifying the item
          $ref: https://schema.nfh.global/CategoryCode/v2.1/attributes.yaml#/components/schemas/CategoryCode
        price:
          description: Price specification for this item
          $ref: https://schema.nfh.global/PriceSpecification/v2.1/attributes.yaml#/components/schemas/PriceSpecification
        quantity:
          description: Available quantity of the item
          $ref: https://schema.nfh.global/Quantity/v2.0/attributes.yaml#/components/schemas/Quantity
        tags:
          description: Tags associated with the item
          type: string
      additionalProperties: false
