Steelcase · API Governance Rules
Steelcase API Rules
Spectral linting rules defining API design standards and conventions for Steelcase.
8 Rules
error 2
warn 6
Rule Categories
steelcase
Rules
warn
steelcase-operation-ids-camel-case
Steelcase RoomWizard API operation IDs use camelCase naming convention.
$.paths[*][*].operationId
warn
steelcase-summaries-title-case
All Steelcase RoomWizard API operation summaries must use Title Case.
$.paths[*][*].summary
error
steelcase-tags-required
Every Steelcase API operation must have at least one tag.
$.paths[*][*]
error
steelcase-booking-required-fields
Booking creation requests must include room_id, subject, start_time, and end_time as required fields.
$.components.schemas.BookingCreate
warn
steelcase-date-time-format
All date and time properties in the Steelcase API should use ISO 8601 date-time format.
$.components.schemas[*].properties[?(@ =~ /.*_time$|.*_at$/)]
warn
steelcase-snake-case-properties
Steelcase RoomWizard API properties use snake_case naming convention (e.g., room_id, start_time, booking_id).
$.components.schemas[*].properties
warn
steelcase-status-enum
Booking status should use the standard Steelcase status values.
$.components.schemas.Booking.properties.status.enum
warn
steelcase-responses-json
Steelcase API responses should return application/json content type.
$.paths[*][*].responses['200'].content