propertiesshort
Propertiesshort is a term used in information architecture and software design to describe a shortened form of property names in data structures, schemas, and APIs. It denotes a convention in which common property names are abbreviated to reduce payload size or improve readability in constrained contexts. The concept is distinct from verbose, self-descriptive naming and is often discussed in the context of data transfer efficiency, embedded systems, or rapid prototyping.
Applications and scope include JSON, YAML, XML, and database schemas, as well as API contracts and message
Advantages of propertiesshort include reduced data transfer size, lower bandwidth usage, and potential improvements in parsing
Long form: {"productId": 123, "productName": "Widget", "createdAt": "2024-01-01T12:00:00Z"}
Short form: {"id": 123, "name": "Widget", "created": "2024-01-01T12:00:00Z"}
Mapping: id -> productId, name -> productName, created -> createdAt.
See also: data naming conventions, aliasing, schema design, API design, data serialization.