OBJECT

ResourceSpecification

Specification of a kind of resource. Could define a material item, service, digital item, currency account, etc. Used instead of a classification when more information is needed, particularly for recipes.

link GraphQL Schema definition

  • type ResourceSpecification {
  • conformingResources: [EconomicResource!]
  • # The default unit used for use or work.
  • defaultUnitOfEffort: Unit
  • # The default unit used for the resource itself.
  • defaultUnitOfResource: Unit
  • id: ID!
  • # The uri to an image relevant to the entity, such as a photo, diagram, etc.
  • image: URI
  • # An informal or formal textual identifier for a type of resource. Does not imply
  • # uniqueness.
  • name: String!
  • # A textual description or comment.
  • note: String
  • # References one or more concepts in a common taxonomy or other classification
  • # scheme for purposes of categorization or grouping.
  • resourceClassifiedAs: [URI!]
  • # Tags/Categories in a taxonomy, linked to resourceClassifiedAs:
  • # References one or more concepts in a common taxonomy or other classification
  • # scheme for purposes of categorization or grouping.
  • tags: [AnyContext!]
  • }