lib/swagger/defs/industry.yaml

84 lines
2.1 KiB
YAML
Raw Normal View History

2023-04-06 01:28:58 +00:00
Industry:
description: An industry that is being researched
properties:
ID:
description: Record Id
type: string
CompanyProducts:
description: The list of Products in this industry
items:
$ref: "./company-product.yaml#/CompanyProduct"
2023-08-25 20:59:50 +00:00
type: array
x-nullable: true
CompanyServices:
description: The list of Services in this industry
items:
$ref: "./company-service.yaml#/CompanyService"
type: array
x-nullable: true
2023-04-06 01:28:58 +00:00
CreatedByID:
description: Created By User ID
type: string
2023-08-25 20:59:50 +00:00
x-nullable: true
2023-04-06 01:28:58 +00:00
CreatedDate:
description: Created Date
type: string
2023-08-25 20:59:50 +00:00
x-nullable: true
2023-04-06 01:28:58 +00:00
Description:
description: Industry Description
type: string
2023-08-25 20:59:50 +00:00
x-nullable: true
2023-04-06 01:28:58 +00:00
ImageAltText:
description: Image Alt Text
type: string
2023-08-25 20:59:50 +00:00
x-nullable: true
2023-04-06 01:28:58 +00:00
ImageURL:
description: Image URL
type: string
2023-08-25 20:59:50 +00:00
x-nullable: true
2023-04-06 01:28:58 +00:00
LastModifiedByID:
description: Last Modified By User ID
type: string
2023-08-25 20:59:50 +00:00
x-nullable: true
2023-04-06 01:28:58 +00:00
LastModifiedDate:
description: Last Modified Date
type: string
2023-08-25 20:59:50 +00:00
x-nullable: true
2023-04-06 01:28:58 +00:00
Level:
description: The hierarchical level of this Industry
type: string
2023-08-25 20:59:50 +00:00
x-nullable: true
2023-04-06 01:28:58 +00:00
Logo:
description: Logo
type: string
2023-08-25 20:59:50 +00:00
x-nullable: true
2023-04-06 01:28:58 +00:00
Name:
description: Industry Name
type: string
2023-08-25 20:59:50 +00:00
x-nullable: true
2023-04-06 01:28:58 +00:00
ParentIndustryID:
description: The ID of the Parent Industry
type: string
2023-08-25 20:59:50 +00:00
x-nullable: true
2023-04-06 01:28:58 +00:00
Path:
description: The full path of this industry, including Parent
type: string
2023-08-25 20:59:50 +00:00
x-nullable: true
ProductCategory:
description: Is this industry a product category?
type: boolean
x-nullable: true
ServiceCategory:
description: Is this industry a service category?
type: boolean
x-nullable: true
2023-04-06 01:28:58 +00:00
Slug:
description: The CMS Slug for this Industry
type: string
2023-08-25 20:59:50 +00:00
x-nullable: true
2023-04-06 01:28:58 +00:00
TagLine:
description: TagLine
type: string
2023-08-25 20:59:50 +00:00
x-nullable: true
2023-04-06 01:28:58 +00:00
type: object