openapi: 3.1.0
info:
  title: Line
  version: 2.0.0
  description: Schema definition for the Line entity in the Beckn Mobility domain.
  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:
    Line:
      x-iri: https://schema.nfh.global/Line/v2.0
      type: object
      title: Line
      description: A named, branded public transport service identified by a number
        or name, typically operating over one or more routes.
      x-tags:
        - mobility
        - transmodel-netex
        - ride-hailing
      properties:
        lineId:
          description: GTFS or NeTEx identifier for the line
          type: string
        shortName:
          description: Short public-facing name (e.g. 42, M1, Jubilee)
          type: string
        longName:
          description: Full descriptive name of the line
          type: string
        lineType:
          description: Mode of transport (e.g. BUS, SUBWAY, RAIL, FERRY)
          type: string
        color:
          description: Hex colour code for line display on maps
          type: string
        textColor:
          description: Hex colour code for text displayed on the line colour
          type: string
        operatorRef:
          description: Reference to the operator running this line
          $ref: https://schema.nfh.global/Operator/v2.0/attributes.yaml#/components/schemas/Operator
        networkRef:
          description: Reference to the network this line belongs to
          $ref: https://schema.nfh.global/Network/v2.0/attributes.yaml#/components/schemas/Network
        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
